pub enum Level {
Primary,
Secondary,
}
Expand description
An enum that indicates whether a command buffer is primary or secondary.
Variants§
Primary
Can be submitted to a queue for execution, but cannot be called from other command buffers.
Secondary
Cannot be submitted directly, but can be called from primary command buffers.
Trait Implementations§
impl Copy for Level
impl StructuralPartialEq for Level
Auto Trait Implementations§
impl Freeze for Level
impl RefUnwindSafe for Level
impl Send for Level
impl Sync for Level
impl Unpin for Level
impl UnwindSafe for Level
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