[−][src]Struct gfx_hal::command::CommandBufferFlags
Option flags for various command buffer settings.
Implementations
impl CommandBufferFlags
[src][−]
pub const EMPTY: CommandBufferFlags
[src][−][−]
No flags.
pub const ONE_TIME_SUBMIT: CommandBufferFlags
[src][−][−]
Says that the command buffer will be recorded, submitted only once, and then reset and re-filled for another submission.
pub const RENDER_PASS_CONTINUE: CommandBufferFlags
[src][−][−]
If set on a secondary command buffer, it says the command buffer takes place entirely inside a render pass. Ignored on primary command buffer.
pub const SIMULTANEOUS_USE: CommandBufferFlags
[src][−][−]
Says that a command buffer can be recorded into multiple primary command buffers, and submitted to a queue while it is still pending.
pub const fn empty() -> CommandBufferFlags
[src][−]
Returns an empty set of flags
pub const fn all() -> CommandBufferFlags
[src][−]
Returns the set containing all flags.
pub const fn bits(&self) -> u32
[src][−]
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<CommandBufferFlags>
[src][−]
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u32) -> CommandBufferFlags
[src][−]
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> CommandBufferFlags
[src][−]
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn is_empty(&self) -> bool
[src][−]
Returns true
if no flags are currently stored.
pub const fn is_all(&self) -> bool
[src][−]
Returns true
if all flags are currently set.
pub const fn intersects(&self, other: CommandBufferFlags) -> bool
[src][−]
Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: CommandBufferFlags) -> bool
[src][−]
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: CommandBufferFlags)
[src][−]
Inserts the specified flags in-place.
pub fn remove(&mut self, other: CommandBufferFlags)
[src][−]
Removes the specified flags in-place.
pub fn toggle(&mut self, other: CommandBufferFlags)
[src][−]
Toggles the specified flags in-place.
pub fn set(&mut self, other: CommandBufferFlags, value: bool)
[src][−]
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Binary for CommandBufferFlags
[src][+]
impl BitAnd<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl BitAndAssign<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl BitOr<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl BitOrAssign<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl BitXor<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl BitXorAssign<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl Clone for CommandBufferFlags
[src][+]
impl Copy for CommandBufferFlags
[src]
impl Debug for CommandBufferFlags
[src][+]
impl Default for CommandBufferFlags
[src][+]
impl Eq for CommandBufferFlags
[src]
impl Extend<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl FromIterator<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl Hash for CommandBufferFlags
[src][+]
impl LowerHex for CommandBufferFlags
[src][+]
impl Not for CommandBufferFlags
[src][+]
impl Octal for CommandBufferFlags
[src][+]
impl Ord for CommandBufferFlags
[src][+]
impl PartialEq<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl PartialOrd<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl StructuralEq for CommandBufferFlags
[src]
impl StructuralPartialEq for CommandBufferFlags
[src]
impl Sub<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl SubAssign<CommandBufferFlags> for CommandBufferFlags
[src][+]
impl UpperHex for CommandBufferFlags
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for CommandBufferFlags
impl Send for CommandBufferFlags
impl Sync for CommandBufferFlags
impl Unpin for CommandBufferFlags
impl UnwindSafe for CommandBufferFlags
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,