ash::vk

Type Alias InputAttachmentAspectReferenceKHR

Source
pub type InputAttachmentAspectReferenceKHR = InputAttachmentAspectReference;

Aliased Type§

struct InputAttachmentAspectReferenceKHR {
    pub subpass: u32,
    pub input_attachment_index: u32,
    pub aspect_mask: ImageAspectFlags,
}

Fields§

§subpass: u32§input_attachment_index: u32§aspect_mask: ImageAspectFlags

Implementations

Source§

impl InputAttachmentAspectReference

Source

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

Source

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

Source

pub fn aspect_mask(self, aspect_mask: ImageAspectFlags) -> Self

Trait Implementations

Source§

impl Clone for InputAttachmentAspectReference

Source§

fn clone(&self) -> InputAttachmentAspectReference

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 Debug for InputAttachmentAspectReference

Source§

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

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

impl Default for InputAttachmentAspectReference

Source§

fn default() -> InputAttachmentAspectReference

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

impl Copy for InputAttachmentAspectReference