Struct ash::vk::AttachmentDescription2
source · #[repr(C)]pub struct AttachmentDescription2 {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: AttachmentDescriptionFlags,
pub format: Format,
pub samples: SampleCountFlags,
pub load_op: AttachmentLoadOp,
pub store_op: AttachmentStoreOp,
pub stencil_load_op: AttachmentLoadOp,
pub stencil_store_op: AttachmentStoreOp,
pub initial_layout: ImageLayout,
pub final_layout: ImageLayout,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: AttachmentDescriptionFlags
§format: Format
§samples: SampleCountFlags
§load_op: AttachmentLoadOp
§store_op: AttachmentStoreOp
§stencil_load_op: AttachmentLoadOp
§stencil_store_op: AttachmentStoreOp
§initial_layout: ImageLayout
§final_layout: ImageLayout
Implementations§
source§impl AttachmentDescription2
impl AttachmentDescription2
pub fn builder<'a>() -> AttachmentDescription2Builder<'a>
Trait Implementations§
source§impl Clone for AttachmentDescription2
impl Clone for AttachmentDescription2
source§fn clone(&self) -> AttachmentDescription2
fn clone(&self) -> AttachmentDescription2
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 moresource§impl Debug for AttachmentDescription2
impl Debug for AttachmentDescription2
source§impl Default for AttachmentDescription2
impl Default for AttachmentDescription2
source§impl TaggedStructure for AttachmentDescription2
impl TaggedStructure for AttachmentDescription2
const STRUCTURE_TYPE: StructureType = StructureType::ATTACHMENT_DESCRIPTION_2
impl Copy for AttachmentDescription2
Auto Trait Implementations§
impl Freeze for AttachmentDescription2
impl RefUnwindSafe for AttachmentDescription2
impl !Send for AttachmentDescription2
impl !Sync for AttachmentDescription2
impl Unpin for AttachmentDescription2
impl UnwindSafe for AttachmentDescription2
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more