Struct mysql::consts::CapabilityFlags [] [src]

pub struct CapabilityFlags {
    // some fields omitted
}

Methods

impl CapabilityFlags

fn empty() -> CapabilityFlags

Returns an empty set of flags.

fn all() -> CapabilityFlags

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

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

fn from_bits_truncate(bits: u32) -> CapabilityFlags

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

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

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

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

fn insert(&mut self, other: CapabilityFlags)

Inserts the specified flags in-place.

fn remove(&mut self, other: CapabilityFlags)

Removes the specified flags in-place.

fn toggle(&mut self, other: CapabilityFlags)

Toggles the specified flags in-place.

Trait Implementations

impl Debug for CapabilityFlags

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

impl BitOr for CapabilityFlags

type Output = CapabilityFlags

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

impl BitXor for CapabilityFlags

type Output = CapabilityFlags

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

impl BitAnd for CapabilityFlags

type Output = CapabilityFlags

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

impl Sub for CapabilityFlags

type Output = CapabilityFlags

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

impl Not for CapabilityFlags

type Output = CapabilityFlags

fn not(self) -> CapabilityFlags

impl FromIterator<CapabilityFlags> for CapabilityFlags

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

Derived Implementations

impl Hash for CapabilityFlags

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

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

impl Ord for CapabilityFlags

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

impl PartialOrd for CapabilityFlags

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

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

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

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

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

impl Clone for CapabilityFlags

fn clone(&self) -> CapabilityFlags

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

impl Eq for CapabilityFlags

impl PartialEq for CapabilityFlags

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

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

impl Copy for CapabilityFlags