#[repr(C)]pub struct RenderingAttachmentInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub image_view: ImageView,
pub image_layout: ImageLayout,
pub resolve_mode: ResolveModeFlags,
pub resolve_image_view: ImageView,
pub resolve_image_layout: ImageLayout,
pub load_op: AttachmentLoadOp,
pub store_op: AttachmentStoreOp,
pub clear_value: ClearValue,
}Expand description
Fields
s_type: StructureTypep_next: *const c_voidimage_view: ImageViewimage_layout: ImageLayoutresolve_mode: ResolveModeFlagsresolve_image_view: ImageViewresolve_image_layout: ImageLayoutload_op: AttachmentLoadOpstore_op: AttachmentStoreOpclear_value: ClearValueImplementations
sourceimpl RenderingAttachmentInfo
impl RenderingAttachmentInfo
pub fn builder<'a>() -> RenderingAttachmentInfoBuilder<'a>
Trait Implementations
sourceimpl Clone for RenderingAttachmentInfo
impl Clone for RenderingAttachmentInfo
sourcefn clone(&self) -> RenderingAttachmentInfo
fn clone(&self) -> RenderingAttachmentInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for RenderingAttachmentInfo
impl Debug for RenderingAttachmentInfo
sourceimpl Default for RenderingAttachmentInfo
impl Default for RenderingAttachmentInfo
sourcefn default() -> RenderingAttachmentInfo
fn default() -> RenderingAttachmentInfo
Returns the “default value” for a type. Read more
impl Copy for RenderingAttachmentInfo
Auto Trait Implementations
impl RefUnwindSafe for RenderingAttachmentInfo
impl !Send for RenderingAttachmentInfo
impl !Sync for RenderingAttachmentInfo
impl Unpin for RenderingAttachmentInfo
impl UnwindSafe for RenderingAttachmentInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more