#[repr(C)]pub struct VkRenderingAttachmentInfo {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub imageView: VkImageView,
pub imageLayout: VkImageLayout,
pub resolveMode: VkResolveModeFlagBits,
pub resolveImageView: VkImageView,
pub resolveImageLayout: VkImageLayout,
pub loadOp: VkAttachmentLoadOp,
pub storeOp: VkAttachmentStoreOp,
pub clearValue: VkClearValue,
}
Fields§
§sType: VkStructureType
§pNext: *const c_void
§imageView: VkImageView
§imageLayout: VkImageLayout
§resolveMode: VkResolveModeFlagBits
§resolveImageView: VkImageView
§resolveImageLayout: VkImageLayout
§loadOp: VkAttachmentLoadOp
§storeOp: VkAttachmentStoreOp
§clearValue: VkClearValue
Trait Implementations§
Source§impl Clone for VkRenderingAttachmentInfo
impl Clone for VkRenderingAttachmentInfo
Source§fn clone(&self) -> VkRenderingAttachmentInfo
fn clone(&self) -> VkRenderingAttachmentInfo
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 VkRenderingAttachmentInfo
impl Default for VkRenderingAttachmentInfo
impl Copy for VkRenderingAttachmentInfo
Auto Trait Implementations§
impl Freeze for VkRenderingAttachmentInfo
impl RefUnwindSafe for VkRenderingAttachmentInfo
impl !Send for VkRenderingAttachmentInfo
impl !Sync for VkRenderingAttachmentInfo
impl Unpin for VkRenderingAttachmentInfo
impl UnwindSafe for VkRenderingAttachmentInfo
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