#[repr(C)]pub struct SemaphoreSubmitInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub semaphore: Semaphore,
pub value: u64,
pub stageMask: PipelineStageFlags2,
pub deviceIndex: u32,
}
Fields§
§sType: StructureType
§pNext: *const c_void
§semaphore: Semaphore
§value: u64
§stageMask: PipelineStageFlags2
§deviceIndex: u32
Trait Implementations§
Source§impl Clone for SemaphoreSubmitInfo
impl Clone for SemaphoreSubmitInfo
Source§fn clone(&self) -> SemaphoreSubmitInfo
fn clone(&self) -> SemaphoreSubmitInfo
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 SemaphoreSubmitInfo
Auto Trait Implementations§
impl Freeze for SemaphoreSubmitInfo
impl RefUnwindSafe for SemaphoreSubmitInfo
impl !Send for SemaphoreSubmitInfo
impl !Sync for SemaphoreSubmitInfo
impl Unpin for SemaphoreSubmitInfo
impl UnwindSafe for SemaphoreSubmitInfo
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