#[repr(C)]pub struct AttachmentDescription {
pub flags: AttachmentDescriptionFlags,
pub format: Format,
pub samples: SampleCountFlagBits,
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
VkAttachmentDescription
Provided by VK_GRAPHICS_VERSION_1_0.
Fields§
§flags: AttachmentDescriptionFlags§format: Format§samples: SampleCountFlagBits§load_op: AttachmentLoadOp§store_op: AttachmentStoreOp§stencil_load_op: AttachmentLoadOp§stencil_store_op: AttachmentStoreOp§initial_layout: ImageLayout§final_layout: ImageLayoutImplementations§
Source§impl AttachmentDescription
impl AttachmentDescription
Sourcepub fn builder() -> AttachmentDescriptionBuilder
pub fn builder() -> AttachmentDescriptionBuilder
Start building this struct.
Trait Implementations§
Source§impl Clone for AttachmentDescription
impl Clone for AttachmentDescription
Source§fn clone(&self) -> AttachmentDescription
fn clone(&self) -> AttachmentDescription
Returns a duplicate 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 AttachmentDescription
impl Debug for AttachmentDescription
Source§impl Default for AttachmentDescription
impl Default for AttachmentDescription
impl Copy for AttachmentDescription
Auto Trait Implementations§
impl Freeze for AttachmentDescription
impl RefUnwindSafe for AttachmentDescription
impl Send for AttachmentDescription
impl Sync for AttachmentDescription
impl Unpin for AttachmentDescription
impl UnsafeUnpin for AttachmentDescription
impl UnwindSafe for AttachmentDescription
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