#[repr(i32)]pub enum SubpassContents {
Inline = 0,
SecondaryCommandBuffers = 1,
}
Expand description
Specify how commands in the first subpass of a render pass are provided2
Variants§
Inline = 0
The contents of the subpass will be recorded inline the primary command buffer
SecondaryCommandBuffers = 1
The contents are recorded in secondary command buffers that will be called from the primary command buffer
Trait Implementations§
Source§impl Clone for SubpassContents
impl Clone for SubpassContents
Source§fn clone(&self) -> SubpassContents
fn clone(&self) -> SubpassContents
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 SubpassContents
impl Debug for SubpassContents
Source§impl PartialEq for SubpassContents
impl PartialEq for SubpassContents
impl Copy for SubpassContents
impl Eq for SubpassContents
impl StructuralPartialEq for SubpassContents
Auto Trait Implementations§
impl Freeze for SubpassContents
impl RefUnwindSafe for SubpassContents
impl Send for SubpassContents
impl Sync for SubpassContents
impl Unpin for SubpassContents
impl UnwindSafe for SubpassContents
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