#[repr(C)]pub struct SemaphoreWaitInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub flags: SemaphoreWaitFlags,
pub semaphoreCount: u32,
pub pSemaphores: *const Semaphore,
pub pValues: *const u64,
}
Fields§
§sType: StructureType
§pNext: *const c_void
§flags: SemaphoreWaitFlags
§semaphoreCount: u32
§pSemaphores: *const Semaphore
§pValues: *const u64
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§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl 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