Struct ash::vk::SemaphoreSubmitInfo
source · #[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
Fields§
§s_type: StructureType
§p_next: *const c_void
§semaphore: Semaphore
§value: u64
§stage_mask: PipelineStageFlags2
§device_index: u32
Implementations§
source§impl SemaphoreSubmitInfo
impl SemaphoreSubmitInfo
pub fn builder<'a>() -> SemaphoreSubmitInfoBuilder<'a>
Trait Implementations§
source§impl Clone for SemaphoreSubmitInfo
impl Clone for SemaphoreSubmitInfo
source§fn clone(&self) -> SemaphoreSubmitInfo
fn clone(&self) -> SemaphoreSubmitInfo
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 moresource§impl Debug for SemaphoreSubmitInfo
impl Debug for SemaphoreSubmitInfo
source§impl Default for SemaphoreSubmitInfo
impl Default for SemaphoreSubmitInfo
source§impl TaggedStructure for SemaphoreSubmitInfo
impl TaggedStructure for SemaphoreSubmitInfo
const STRUCTURE_TYPE: StructureType = StructureType::SEMAPHORE_SUBMIT_INFO
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 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