#[repr(C)]pub struct AttachmentDescription2 {
pub sType: StructureType,
pub pNext: *const c_void,
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§
§sType: StructureType
§pNext: *const c_void
§flags: AttachmentDescriptionFlags
§format: Format
§samples: SampleCountFlagBits
§loadOp: AttachmentLoadOp
§storeOp: AttachmentStoreOp
§stencilLoadOp: AttachmentLoadOp
§stencilStoreOp: AttachmentStoreOp
§initialLayout: ImageLayout
§finalLayout: ImageLayout
Trait Implementations§
Source§impl Clone for AttachmentDescription2
impl Clone for AttachmentDescription2
Source§fn clone(&self) -> AttachmentDescription2
fn clone(&self) -> AttachmentDescription2
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 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