ash::vk

Type Alias SemaphoreWaitInfoKHR

Source
pub type SemaphoreWaitInfoKHR<'a> = SemaphoreWaitInfo<'a>;

Aliased Type§

struct SemaphoreWaitInfoKHR<'a> {
    pub s_type: StructureType,
    pub p_next: *const c_void,
    pub flags: SemaphoreWaitFlags,
    pub semaphore_count: u32,
    pub p_semaphores: *const Semaphore,
    pub p_values: *const u64,
    pub _marker: PhantomData<&'a ()>,
}

Fields§

§s_type: StructureType§p_next: *const c_void§flags: SemaphoreWaitFlags§semaphore_count: u32§p_semaphores: *const Semaphore§p_values: *const u64§_marker: PhantomData<&'a ()>

Implementations

Source§

impl<'a> SemaphoreWaitInfo<'a>

Source

pub fn flags(self, flags: SemaphoreWaitFlags) -> Self

Source

pub fn semaphores(self, semaphores: &'a [Semaphore]) -> Self

Source

pub fn values(self, values: &'a [u64]) -> Self

Trait Implementations

Source§

impl<'a> Clone for SemaphoreWaitInfo<'a>

Source§

fn clone(&self) -> SemaphoreWaitInfo<'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 SemaphoreWaitInfo<'a>

Source§

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

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

impl Default for SemaphoreWaitInfo<'_>

Source§

fn default() -> Self

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

impl<'a> TaggedStructure for SemaphoreWaitInfo<'a>

Source§

const STRUCTURE_TYPE: StructureType = StructureType::SEMAPHORE_WAIT_INFO

Source§

impl<'a> Copy for SemaphoreWaitInfo<'a>

Source§

impl Send for SemaphoreWaitInfo<'_>

Source§

impl Sync for SemaphoreWaitInfo<'_>