#[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
VkSemaphoreWaitInfo
Provided by VK_BASE_VERSION_1_2.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_SEMAPHORE_WAIT_INFO.
p_next: *const c_voidOptional, may be null.
flags: SemaphoreWaitFlags§semaphore_count: u32Length of p_values.
p_semaphores: *const Semaphore§p_values: *const u64Implementations§
Source§impl SemaphoreWaitInfo
impl SemaphoreWaitInfo
Sourcepub fn builder<'a>() -> SemaphoreWaitInfoBuilder<'a>
pub fn builder<'a>() -> SemaphoreWaitInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for SemaphoreWaitInfo
impl Clone for SemaphoreWaitInfo
Source§fn clone(&self) -> SemaphoreWaitInfo
fn clone(&self) -> SemaphoreWaitInfo
Returns a duplicate 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
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 UnsafeUnpin 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