Struct nix::sys::signal::signal::HowFlag [] [src]

pub struct HowFlag {
    // some fields omitted
}

Methods

impl HowFlag

fn empty() -> HowFlag

Returns an empty set of flags.

fn all() -> HowFlag

Returns the set containing all flags.

fn bits(&self) -> c_int

Returns the raw value of the flags currently stored.

fn from_bits(bits: c_int) -> Option<HowFlag>

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

fn from_bits_truncate(bits: c_int) -> HowFlag

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

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

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

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

fn insert(&mut self, other: HowFlag)

Inserts the specified flags in-place.

fn remove(&mut self, other: HowFlag)

Removes the specified flags in-place.

fn toggle(&mut self, other: HowFlag)

Toggles the specified flags in-place.

Trait Implementations

impl Debug for HowFlag

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

impl BitOr for HowFlag

type Output = HowFlag

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

impl BitXor for HowFlag

type Output = HowFlag

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

impl BitAnd for HowFlag

type Output = HowFlag

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

impl Sub for HowFlag

type Output = HowFlag

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

impl Not for HowFlag

type Output = HowFlag

fn not(self) -> HowFlag

impl FromIterator<HowFlag> for HowFlag

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

Derived Implementations

impl Hash for HowFlag

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

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

impl Ord for HowFlag

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

impl PartialOrd for HowFlag

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

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

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

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

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

impl Clone for HowFlag

fn clone(&self) -> HowFlag

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

impl Eq for HowFlag

impl PartialEq for HowFlag

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

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

impl Copy for HowFlag