Struct gfx_hal::command::CommandBufferFlags [−][src]
pub struct CommandBufferFlags { /* fields omitted */ }
Option flags for various command buffer settings.
Implementations
impl CommandBufferFlags
[src]
impl CommandBufferFlags
[src]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 BitAnd<CommandBufferFlags> for CommandBufferFlags
[src]
impl BitAnd<CommandBufferFlags> for CommandBufferFlags
[src]type Output = CommandBufferFlags
The resulting type after applying the &
operator.
fn bitand(self, other: CommandBufferFlags) -> CommandBufferFlags
[src]
Returns the intersection between the two sets of flags.
impl BitAndAssign<CommandBufferFlags> for CommandBufferFlags
[src]
impl BitAndAssign<CommandBufferFlags> for CommandBufferFlags
[src]fn bitand_assign(&mut self, other: CommandBufferFlags)
[src]
Disables all flags disabled in the set.
impl BitOr<CommandBufferFlags> for CommandBufferFlags
[src]
impl BitOr<CommandBufferFlags> for CommandBufferFlags
[src]type Output = CommandBufferFlags
The resulting type after applying the |
operator.
fn bitor(self, other: CommandBufferFlags) -> CommandBufferFlags
[src]
Returns the union of the two sets of flags.
impl BitOrAssign<CommandBufferFlags> for CommandBufferFlags
[src]
impl BitOrAssign<CommandBufferFlags> for CommandBufferFlags
[src]fn bitor_assign(&mut self, other: CommandBufferFlags)
[src]
Adds the set of flags.
impl BitXor<CommandBufferFlags> for CommandBufferFlags
[src]
impl BitXor<CommandBufferFlags> for CommandBufferFlags
[src]type Output = CommandBufferFlags
The resulting type after applying the ^
operator.
fn bitxor(self, other: CommandBufferFlags) -> CommandBufferFlags
[src]
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign<CommandBufferFlags> for CommandBufferFlags
[src]
impl BitXorAssign<CommandBufferFlags> for CommandBufferFlags
[src]fn bitxor_assign(&mut self, other: CommandBufferFlags)
[src]
Toggles the set of flags.
impl Clone for CommandBufferFlags
[src]
impl Clone for CommandBufferFlags
[src]fn clone(&self) -> CommandBufferFlags
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for CommandBufferFlags
[src]
impl Copy for CommandBufferFlags
[src]impl Default for CommandBufferFlags
[src]
impl Default for CommandBufferFlags
[src]fn default() -> CommandBufferFlags
[src]
impl Eq for CommandBufferFlags
[src]
impl Eq for CommandBufferFlags
[src]impl Extend<CommandBufferFlags> for CommandBufferFlags
[src]
impl Extend<CommandBufferFlags> for CommandBufferFlags
[src]fn extend<T: IntoIterator<Item = CommandBufferFlags>>(&mut self, iterator: T)
[src]
pub fn extend_one(&mut self, item: A)
[src]
pub fn extend_reserve(&mut self, additional: usize)
[src]
impl FromIterator<CommandBufferFlags> for CommandBufferFlags
[src]
impl FromIterator<CommandBufferFlags> for CommandBufferFlags
[src]fn from_iter<T: IntoIterator<Item = CommandBufferFlags>>(
iterator: T
) -> CommandBufferFlags
[src]
iterator: T
) -> CommandBufferFlags
impl Hash for CommandBufferFlags
[src]
impl Hash for CommandBufferFlags
[src]impl Not for CommandBufferFlags
[src]
impl Not for CommandBufferFlags
[src]type Output = CommandBufferFlags
The resulting type after applying the !
operator.
fn not(self) -> CommandBufferFlags
[src]
Returns the complement of this set of flags.
impl Ord for CommandBufferFlags
[src]
impl Ord for CommandBufferFlags
[src]impl PartialEq<CommandBufferFlags> for CommandBufferFlags
[src]
impl PartialEq<CommandBufferFlags> for CommandBufferFlags
[src]fn eq(&self, other: &CommandBufferFlags) -> bool
[src]
fn ne(&self, other: &CommandBufferFlags) -> bool
[src]
impl PartialOrd<CommandBufferFlags> for CommandBufferFlags
[src]
impl PartialOrd<CommandBufferFlags> for CommandBufferFlags
[src]fn partial_cmp(&self, other: &CommandBufferFlags) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl StructuralEq for CommandBufferFlags
[src]
impl StructuralEq for CommandBufferFlags
[src]impl Sub<CommandBufferFlags> for CommandBufferFlags
[src]
impl Sub<CommandBufferFlags> for CommandBufferFlags
[src]type Output = CommandBufferFlags
The resulting type after applying the -
operator.
fn sub(self, other: CommandBufferFlags) -> CommandBufferFlags
[src]
Returns the set difference of the two sets of flags.
impl SubAssign<CommandBufferFlags> for CommandBufferFlags
[src]
impl SubAssign<CommandBufferFlags> for CommandBufferFlags
[src]fn sub_assign(&mut self, other: CommandBufferFlags)
[src]
Disables all flags enabled in the set.
Auto Trait Implementations
impl RefUnwindSafe for CommandBufferFlags
impl RefUnwindSafe for CommandBufferFlags
impl Send for CommandBufferFlags
impl Send for CommandBufferFlags
impl Sync for CommandBufferFlags
impl Sync for CommandBufferFlags
impl Unpin for CommandBufferFlags
impl Unpin for CommandBufferFlags
impl UnwindSafe for CommandBufferFlags
impl UnwindSafe for CommandBufferFlags