pub type SemaphoreWaitInfoKHR<'a> = SemaphoreWaitInfo<'a>;
Aliased Type§
struct SemaphoreWaitInfoKHR<'a> {
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,
pub _marker: PhantomData<&'a ()>,
}
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: SemaphoreWaitFlags
§semaphore_count: u32
§p_semaphores: *const Semaphore
§p_values: *const u64
§_marker: PhantomData<&'a ()>
Implementations
Source§impl<'a> SemaphoreWaitInfo<'a>
impl<'a> SemaphoreWaitInfo<'a>
pub fn flags(self, flags: SemaphoreWaitFlags) -> Self
pub fn semaphores(self, semaphores: &'a [Semaphore]) -> Self
pub fn values(self, values: &'a [u64]) -> Self
Trait Implementations
Source§impl<'a> Clone for SemaphoreWaitInfo<'a>
impl<'a> Clone for SemaphoreWaitInfo<'a>
Source§fn clone(&self) -> SemaphoreWaitInfo<'a>
fn clone(&self) -> SemaphoreWaitInfo<'a>
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 more