#[repr(C)]pub struct VkAttachmentDescription {
pub flags: VkAttachmentDescriptionFlags,
pub format: VkFormat,
pub samples: VkSampleCountFlagBits,
pub loadOp: VkAttachmentLoadOp,
pub storeOp: VkAttachmentStoreOp,
pub stencilLoadOp: VkAttachmentLoadOp,
pub stencilStoreOp: VkAttachmentStoreOp,
pub initialLayout: VkImageLayout,
pub finalLayout: VkImageLayout,
}
Fields§
§flags: VkAttachmentDescriptionFlags
§format: VkFormat
§samples: VkSampleCountFlagBits
§loadOp: VkAttachmentLoadOp
§storeOp: VkAttachmentStoreOp
§stencilLoadOp: VkAttachmentLoadOp
§stencilStoreOp: VkAttachmentStoreOp
§initialLayout: VkImageLayout
§finalLayout: VkImageLayout
Trait Implementations§
Source§impl Clone for VkAttachmentDescription
impl Clone for VkAttachmentDescription
Source§fn clone(&self) -> VkAttachmentDescription
fn clone(&self) -> VkAttachmentDescription
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 moreSource§impl Default for VkAttachmentDescription
impl Default for VkAttachmentDescription
impl Copy for VkAttachmentDescription
Auto Trait Implementations§
impl Freeze for VkAttachmentDescription
impl RefUnwindSafe for VkAttachmentDescription
impl Send for VkAttachmentDescription
impl Sync for VkAttachmentDescription
impl Unpin for VkAttachmentDescription
impl UnwindSafe for VkAttachmentDescription
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