#[repr(C)]pub struct RenderingAttachmentInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub imageView: ImageView,
pub imageLayout: ImageLayout,
pub resolveMode: ResolveModeFlagBits,
pub resolveImageView: ImageView,
pub resolveImageLayout: ImageLayout,
pub loadOp: AttachmentLoadOp,
pub storeOp: AttachmentStoreOp,
pub clearValue: ClearValue,
}
Fields§
§sType: StructureType
§pNext: *const c_void
§imageView: ImageView
§imageLayout: ImageLayout
§resolveMode: ResolveModeFlagBits
§resolveImageView: ImageView
§resolveImageLayout: ImageLayout
§loadOp: AttachmentLoadOp
§storeOp: AttachmentStoreOp
§clearValue: ClearValue
Trait Implementations§
Source§impl Clone for RenderingAttachmentInfo
impl Clone for RenderingAttachmentInfo
Source§fn clone(&self) -> RenderingAttachmentInfo
fn clone(&self) -> RenderingAttachmentInfo
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 RenderingAttachmentInfo
Auto Trait Implementations§
impl Freeze for RenderingAttachmentInfo
impl RefUnwindSafe for RenderingAttachmentInfo
impl !Send for RenderingAttachmentInfo
impl !Sync for RenderingAttachmentInfo
impl Unpin for RenderingAttachmentInfo
impl UnwindSafe for RenderingAttachmentInfo
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