#[repr(C)]pub struct VkSemaphoreWaitInfo {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub flags: VkSemaphoreWaitFlags,
pub semaphoreCount: u32,
pub pSemaphores: *const VkSemaphore,
pub pValues: *const u64,
}
Fields§
§sType: VkStructureType
§pNext: *const c_void
§flags: VkSemaphoreWaitFlags
§semaphoreCount: u32
§pSemaphores: *const VkSemaphore
§pValues: *const u64
Trait Implementations§
Source§impl Clone for VkSemaphoreWaitInfo
impl Clone for VkSemaphoreWaitInfo
Source§fn clone(&self) -> VkSemaphoreWaitInfo
fn clone(&self) -> VkSemaphoreWaitInfo
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 moreSource§impl Default for VkSemaphoreWaitInfo
impl Default for VkSemaphoreWaitInfo
impl Copy for VkSemaphoreWaitInfo
Auto Trait Implementations§
impl Freeze for VkSemaphoreWaitInfo
impl RefUnwindSafe for VkSemaphoreWaitInfo
impl !Send for VkSemaphoreWaitInfo
impl !Sync for VkSemaphoreWaitInfo
impl Unpin for VkSemaphoreWaitInfo
impl UnwindSafe for VkSemaphoreWaitInfo
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