Struct SemaphoreSubmitInfo

Source
pub struct SemaphoreSubmitInfo<'s>(/* private fields */);
Available on crate feature VK_KHR_synchronization2 only.

Implementations§

Source§

impl<'s> SemaphoreSubmitInfo<'s>

Source

pub fn new( semaphore: &'s (impl VkHandle<Handle = VkSemaphore> + ?Sized), ) -> Self

Source

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

Source

pub const fn with_on_stage(self, stage_mask: VkPipelineStageFlags2KHR) -> Self

Source

pub const fn on_top_of_pipe(self) -> Self

Source

pub const fn on_draw_indirect(self) -> Self

Source

pub const fn on_vertex_input(self) -> Self

Source

pub const fn on_vertex_shader(self) -> Self

Source

pub const fn on_tessellation_control_shader(self) -> Self

Source

pub const fn on_tessellation_evaluation_shader(self) -> Self

Source

pub const fn on_geometry_shader(self) -> Self

Source

pub const fn on_fragment_shader(self) -> Self

Source

pub const fn on_early_fragment_tests(self) -> Self

Source

pub const fn on_late_fragment_tests(self) -> Self

Source

pub const fn on_color_attachment_output(self) -> Self

Source

pub const fn on_compute_shader(self) -> Self

Source

pub const fn on_any_transfer(self) -> Self

Source

pub const fn on_bottom_of_pipe(self) -> Self

Source

pub const fn on_host(self) -> Self

Source

pub const fn on_any_graphics(self) -> Self

Source

pub const fn on_any_command(self) -> Self

Source

pub const fn on_copy(self) -> Self

Source

pub const fn on_resolve(self) -> Self

Source

pub const fn on_blit(self) -> Self

Source

pub const fn on_clear(self) -> Self

Source

pub const fn on_index_input(self) -> Self

Source

pub const fn on_vertex_attribute_input(self) -> Self

Source

pub const fn on_pre_rasterization_shaders(self) -> Self

Auto Trait Implementations§

§

impl<'s> Freeze for SemaphoreSubmitInfo<'s>

§

impl<'s> !RefUnwindSafe for SemaphoreSubmitInfo<'s>

§

impl<'s> !Send for SemaphoreSubmitInfo<'s>

§

impl<'s> !Sync for SemaphoreSubmitInfo<'s>

§

impl<'s> Unpin for SemaphoreSubmitInfo<'s>

§

impl<'s> !UnwindSafe for SemaphoreSubmitInfo<'s>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.