pub struct SubpassDescription {
pub flags: SubpassDescriptionFlags,
pub pipeline_bind_point: PipelineBindPoint,
pub input_attachments: Vec<AttachmentReference>,
pub color_attachments: Vec<AttachmentReference>,
pub resolve_attachments: Vec<AttachmentReference>,
pub depth_stencil_attachment: Option<AttachmentReference>,
pub preserve_attachments: Vec<u32>,
}
Expand description
Fields§
§flags: SubpassDescriptionFlags
§pipeline_bind_point: PipelineBindPoint
§input_attachments: Vec<AttachmentReference>
§color_attachments: Vec<AttachmentReference>
§resolve_attachments: Vec<AttachmentReference>
§depth_stencil_attachment: Option<AttachmentReference>
§preserve_attachments: Vec<u32>
Trait Implementations§
Source§impl Clone for SubpassDescription
impl Clone for SubpassDescription
Source§fn clone(&self) -> SubpassDescription
fn clone(&self) -> SubpassDescription
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 moreSource§impl Debug for SubpassDescription
impl Debug for SubpassDescription
Source§impl<'a> From<&'a VkSubpassDescription> for SubpassDescription
impl<'a> From<&'a VkSubpassDescription> for SubpassDescription
Source§fn from(description: &'a VkSubpassDescription) -> Self
fn from(description: &'a VkSubpassDescription) -> Self
Converts to this type from the input type.
Source§impl Hash for SubpassDescription
impl Hash for SubpassDescription
Source§impl PartialEq for SubpassDescription
impl PartialEq for SubpassDescription
impl Eq for SubpassDescription
impl StructuralPartialEq for SubpassDescription
Auto Trait Implementations§
impl Freeze for SubpassDescription
impl RefUnwindSafe for SubpassDescription
impl Send for SubpassDescription
impl Sync for SubpassDescription
impl Unpin for SubpassDescription
impl UnwindSafe for SubpassDescription
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