#[repr(C)]pub struct AttachmentDescription {
pub flags: AttachmentDescriptionFlags,
pub format: Format,
pub samples: SampleCountFlagBits,
pub loadOp: AttachmentLoadOp,
pub storeOp: AttachmentStoreOp,
pub stencilLoadOp: AttachmentLoadOp,
pub stencilStoreOp: AttachmentStoreOp,
pub initialLayout: ImageLayout,
pub finalLayout: ImageLayout,
}Fields§
§flags: AttachmentDescriptionFlags§format: Format§samples: SampleCountFlagBits§loadOp: AttachmentLoadOp§storeOp: AttachmentStoreOp§stencilLoadOp: AttachmentLoadOp§stencilStoreOp: AttachmentStoreOp§initialLayout: ImageLayout§finalLayout: ImageLayoutAuto Trait Implementations§
impl Freeze for AttachmentDescription
impl RefUnwindSafe for AttachmentDescription
impl Send for AttachmentDescription
impl Sync for AttachmentDescription
impl Unpin 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