#[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: ImageLayout
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§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl 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 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