Struct ash::vk::SemaphoreWaitInfo
source · #[repr(C)]pub struct SemaphoreWaitInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: SemaphoreWaitFlags,
pub semaphore_count: u32,
pub p_semaphores: *const Semaphore,
pub p_values: *const u64,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: SemaphoreWaitFlags
§semaphore_count: u32
§p_semaphores: *const Semaphore
§p_values: *const u64
Implementations§
source§impl SemaphoreWaitInfo
impl SemaphoreWaitInfo
pub fn builder<'a>() -> SemaphoreWaitInfoBuilder<'a>
Trait Implementations§
source§impl Clone for SemaphoreWaitInfo
impl Clone for SemaphoreWaitInfo
source§fn clone(&self) -> SemaphoreWaitInfo
fn clone(&self) -> SemaphoreWaitInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SemaphoreWaitInfo
impl Debug for SemaphoreWaitInfo
source§impl Default for SemaphoreWaitInfo
impl Default for SemaphoreWaitInfo
source§impl TaggedStructure for SemaphoreWaitInfo
impl TaggedStructure for SemaphoreWaitInfo
const STRUCTURE_TYPE: StructureType = StructureType::SEMAPHORE_WAIT_INFO
impl Copy for SemaphoreWaitInfo
Auto Trait Implementations§
impl Freeze for SemaphoreWaitInfo
impl RefUnwindSafe for SemaphoreWaitInfo
impl !Send for SemaphoreWaitInfo
impl !Sync for SemaphoreWaitInfo
impl Unpin for SemaphoreWaitInfo
impl UnwindSafe for SemaphoreWaitInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more