Struct bgfx::flags::DebugFlags [] [src]

pub struct DebugFlags {
    // some fields omitted
}

Methods

impl DebugFlags

fn empty() -> DebugFlags

Returns an empty set of flags.

fn all() -> DebugFlags

Returns the set containing all flags.

fn bits(&self) -> u32

Returns the raw value of the flags currently stored.

fn from_bits(bits: u32) -> Option<DebugFlags>

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

fn from_bits_truncate(bits: u32) -> DebugFlags

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

fn is_empty(&self) -> bool

Returns true if no flags are currently stored.

fn is_all(&self) -> bool

Returns true if all flags are currently set.

fn intersects(&self, other: DebugFlags) -> bool

Returns true if there are flags common to both self and other.

fn contains(&self, other: DebugFlags) -> bool

Returns true all of the flags in other are contained within self.

fn insert(&mut self, other: DebugFlags)

Inserts the specified flags in-place.

fn remove(&mut self, other: DebugFlags)

Removes the specified flags in-place.

fn toggle(&mut self, other: DebugFlags)

Toggles the specified flags in-place.

Trait Implementations

impl Debug for DebugFlags

fn fmt(&self, f: &mut Formatter) -> Result

impl BitOr for DebugFlags

type Output = DebugFlags

fn bitor(self, other: DebugFlags) -> DebugFlags

impl BitXor for DebugFlags

type Output = DebugFlags

fn bitxor(self, other: DebugFlags) -> DebugFlags

impl BitAnd for DebugFlags

type Output = DebugFlags

fn bitand(self, other: DebugFlags) -> DebugFlags

impl Sub for DebugFlags

type Output = DebugFlags

fn sub(self, other: DebugFlags) -> DebugFlags

impl Not for DebugFlags

type Output = DebugFlags

fn not(self) -> DebugFlags

impl FromIterator<DebugFlags> for DebugFlags

fn from_iter<T: IntoIterator<Item=DebugFlags>>(iterator: T) -> DebugFlags

impl Default for DebugFlags

fn default() -> DebugFlags

Derived Implementations

impl Hash for DebugFlags

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl Ord for DebugFlags

fn cmp(&self, __arg_0: &DebugFlags) -> Ordering

impl PartialOrd for DebugFlags

fn partial_cmp(&self, __arg_0: &DebugFlags) -> Option<Ordering>

fn lt(&self, __arg_0: &DebugFlags) -> bool

fn le(&self, __arg_0: &DebugFlags) -> bool

fn gt(&self, __arg_0: &DebugFlags) -> bool

fn ge(&self, __arg_0: &DebugFlags) -> bool

impl Clone for DebugFlags

fn clone(&self) -> DebugFlags

fn clone_from(&mut self, source: &Self)

impl Eq for DebugFlags

impl PartialEq for DebugFlags

fn eq(&self, __arg_0: &DebugFlags) -> bool

fn ne(&self, __arg_0: &DebugFlags) -> bool

impl Copy for DebugFlags