Struct bgfx::flags::BufferFlags [] [src]

pub struct BufferFlags {
    // some fields omitted
}

Methods

impl BufferFlags

fn empty() -> BufferFlags

Returns an empty set of flags.

fn all() -> BufferFlags

Returns the set containing all flags.

fn bits(&self) -> u16

Returns the raw value of the flags currently stored.

fn from_bits(bits: u16) -> Option<BufferFlags>

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

fn from_bits_truncate(bits: u16) -> BufferFlags

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: BufferFlags) -> bool

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

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

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

fn insert(&mut self, other: BufferFlags)

Inserts the specified flags in-place.

fn remove(&mut self, other: BufferFlags)

Removes the specified flags in-place.

fn toggle(&mut self, other: BufferFlags)

Toggles the specified flags in-place.

Trait Implementations

impl Debug for BufferFlags

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

impl BitOr for BufferFlags

type Output = BufferFlags

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

impl BitXor for BufferFlags

type Output = BufferFlags

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

impl BitAnd for BufferFlags

type Output = BufferFlags

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

impl Sub for BufferFlags

type Output = BufferFlags

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

impl Not for BufferFlags

type Output = BufferFlags

fn not(self) -> BufferFlags

impl FromIterator<BufferFlags> for BufferFlags

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

impl Default for BufferFlags

fn default() -> BufferFlags

Derived Implementations

impl Hash for BufferFlags

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

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

impl Ord for BufferFlags

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

impl PartialOrd for BufferFlags

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

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

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

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

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

impl Clone for BufferFlags

fn clone(&self) -> BufferFlags

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

impl Eq for BufferFlags

impl PartialEq for BufferFlags

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

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

impl Copy for BufferFlags