#[repr(C)]pub struct VkAttachmentDescription2KHR {
pub sType: VkStructureType,
pub pNext: *const c_void,
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§
§sType: VkStructureType§pNext: *const c_void§flags: VkAttachmentDescriptionFlags§format: VkFormat§samples: VkSampleCountFlagBits§loadOp: VkAttachmentLoadOp§storeOp: VkAttachmentStoreOp§stencilLoadOp: VkAttachmentLoadOp§stencilStoreOp: VkAttachmentStoreOp§initialLayout: VkImageLayout§finalLayout: VkImageLayoutTrait Implementations§
Source§impl Clone for VkAttachmentDescription2KHR
impl Clone for VkAttachmentDescription2KHR
Source§fn clone(&self) -> VkAttachmentDescription2KHR
fn clone(&self) -> VkAttachmentDescription2KHR
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 moreimpl Copy for VkAttachmentDescription2KHR
Auto Trait Implementations§
impl Freeze for VkAttachmentDescription2KHR
impl RefUnwindSafe for VkAttachmentDescription2KHR
impl !Send for VkAttachmentDescription2KHR
impl !Sync for VkAttachmentDescription2KHR
impl Unpin for VkAttachmentDescription2KHR
impl UnwindSafe for VkAttachmentDescription2KHR
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