Struct ash::vk::definitions::SemaphoreSubmitInfo
source · #[repr(C)]pub struct SemaphoreSubmitInfo<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub semaphore: Semaphore,
pub value: u64,
pub stage_mask: PipelineStageFlags2,
pub device_index: u32,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§semaphore: Semaphore
§value: u64
§stage_mask: PipelineStageFlags2
§device_index: u32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> SemaphoreSubmitInfo<'a>
impl<'a> SemaphoreSubmitInfo<'a>
pub fn semaphore(self, semaphore: Semaphore) -> Self
pub fn value(self, value: u64) -> Self
pub fn stage_mask(self, stage_mask: PipelineStageFlags2) -> Self
pub fn device_index(self, device_index: u32) -> Self
Trait Implementations§
source§impl<'a> Clone for SemaphoreSubmitInfo<'a>
impl<'a> Clone for SemaphoreSubmitInfo<'a>
source§fn clone(&self) -> SemaphoreSubmitInfo<'a>
fn clone(&self) -> SemaphoreSubmitInfo<'a>
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<'a> Debug for SemaphoreSubmitInfo<'a>
impl<'a> Debug for SemaphoreSubmitInfo<'a>
source§impl Default for SemaphoreSubmitInfo<'_>
impl Default for SemaphoreSubmitInfo<'_>
source§impl<'a> TaggedStructure for SemaphoreSubmitInfo<'a>
impl<'a> TaggedStructure for SemaphoreSubmitInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::SEMAPHORE_SUBMIT_INFO
impl<'a> Copy for SemaphoreSubmitInfo<'a>
impl Send for SemaphoreSubmitInfo<'_>
impl Sync for SemaphoreSubmitInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for SemaphoreSubmitInfo<'a>
impl<'a> RefUnwindSafe for SemaphoreSubmitInfo<'a>
impl<'a> Unpin for SemaphoreSubmitInfo<'a>
impl<'a> UnwindSafe for SemaphoreSubmitInfo<'a>
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