#[repr(C)]pub struct SemaphoreSubmitInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub semaphore: Semaphore,
pub value: u64,
pub stage_mask: PipelineStageFlags2,
pub device_index: u32,
}Expand description
VkSemaphoreSubmitInfo
Provided by VK_BASE_VERSION_1_3.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_SEMAPHORE_SUBMIT_INFO.
p_next: *const c_voidOptional, may be null.
semaphore: Semaphore§value: u64§stage_mask: PipelineStageFlags2§device_index: u32Implementations§
Source§impl SemaphoreSubmitInfo
impl SemaphoreSubmitInfo
Sourcepub fn builder<'a>() -> SemaphoreSubmitInfoBuilder<'a>
pub fn builder<'a>() -> SemaphoreSubmitInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
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§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SemaphoreSubmitInfo
impl Debug for SemaphoreSubmitInfo
Source§impl Default for SemaphoreSubmitInfo
impl Default for SemaphoreSubmitInfo
impl 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 UnsafeUnpin 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