pub type SemaphoreSubmitInfoKHR<'a> = SemaphoreSubmitInfo<'a>;
Aliased Type§
struct SemaphoreSubmitInfoKHR<'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 ()>,
}
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 more