Struct ash::vk::RenderingAttachmentInfo
source · #[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: StructureType
§p_next: *const c_void
§image_view: ImageView
§image_layout: ImageLayout
§resolve_mode: ResolveModeFlags
§resolve_image_view: ImageView
§resolve_image_layout: ImageLayout
§load_op: AttachmentLoadOp
§store_op: AttachmentStoreOp
§clear_value: ClearValue
Implementations§
source§impl RenderingAttachmentInfo
impl RenderingAttachmentInfo
pub fn builder<'a>() -> RenderingAttachmentInfoBuilder<'a>
Trait Implementations§
source§impl Clone for RenderingAttachmentInfo
impl Clone for RenderingAttachmentInfo
source§fn clone(&self) -> RenderingAttachmentInfo
fn clone(&self) -> RenderingAttachmentInfo
Returns a copy 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 moresource§impl Debug for RenderingAttachmentInfo
impl Debug for RenderingAttachmentInfo
source§impl Default for RenderingAttachmentInfo
impl Default for RenderingAttachmentInfo
source§impl TaggedStructure for RenderingAttachmentInfo
impl TaggedStructure for RenderingAttachmentInfo
const STRUCTURE_TYPE: StructureType = StructureType::RENDERING_ATTACHMENT_INFO
impl 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