ash::vk::aliases

Type Alias SemaphoreSubmitInfoKHR

Source
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>

Source

pub fn semaphore(self, semaphore: Semaphore) -> Self

Source

pub fn value(self, value: u64) -> Self

Source

pub fn stage_mask(self, stage_mask: PipelineStageFlags2) -> Self

Source

pub fn device_index(self, device_index: u32) -> Self

Trait Implementations

Source§

impl<'a> Clone for SemaphoreSubmitInfo<'a>

Source§

fn clone(&self) -> SemaphoreSubmitInfo<'a>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for SemaphoreSubmitInfo<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for SemaphoreSubmitInfo<'_>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'a> TaggedStructure for SemaphoreSubmitInfo<'a>

Source§

const STRUCTURE_TYPE: StructureType = StructureType::SEMAPHORE_SUBMIT_INFO

Source§

impl<'a> Copy for SemaphoreSubmitInfo<'a>

Source§

impl Send for SemaphoreSubmitInfo<'_>

Source§

impl Sync for SemaphoreSubmitInfo<'_>