Struct gfx::device::state::ColorMask [] [src]

pub struct ColorMask {
    // some fields omitted
}

Methods

impl ColorMask

fn empty() -> ColorMask

Returns an empty set of flags.

fn all() -> ColorMask

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<ColorMask>

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

fn from_bits_truncate(bits: u32) -> ColorMask

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

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

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

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

fn insert(&mut self, other: ColorMask)

Inserts the specified flags in-place.

fn remove(&mut self, other: ColorMask)

Removes the specified flags in-place.

fn toggle(&mut self, other: ColorMask)

Toggles the specified flags in-place.

Trait Implementations

impl BitOr<ColorMask> for ColorMask

type Output = ColorMask

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

impl BitXor<ColorMask> for ColorMask

type Output = ColorMask

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

impl BitAnd<ColorMask> for ColorMask

type Output = ColorMask

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

impl Sub<ColorMask> for ColorMask

type Output = ColorMask

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

impl Not for ColorMask

type Output = ColorMask

fn not(self) -> ColorMask

impl Debug for ColorMask

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

Derived Implementations

impl Hash for ColorMask

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

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

impl Ord for ColorMask

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

impl PartialOrd<ColorMask> for ColorMask

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

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

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

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

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

impl Clone for ColorMask

fn clone(&self) -> ColorMask

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

impl Eq for ColorMask

impl PartialEq<ColorMask> for ColorMask

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

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

impl Copy for ColorMask