Struct oniguruma::SyntaxBehavior [] [src]

pub struct SyntaxBehavior {
    // some fields omitted
}

Methods

impl SyntaxBehavior

fn empty() -> SyntaxBehavior

Returns an empty set of flags.

fn all() -> SyntaxBehavior

Returns the set containing all flags.

fn bits(&self) -> c_uint

Returns the raw value of the flags currently stored.

fn from_bits(bits: c_uint) -> Option<SyntaxBehavior>

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

fn from_bits_truncate(bits: c_uint) -> SyntaxBehavior

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

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

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

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

fn insert(&mut self, other: SyntaxBehavior)

Inserts the specified flags in-place.

fn remove(&mut self, other: SyntaxBehavior)

Removes the specified flags in-place.

fn toggle(&mut self, other: SyntaxBehavior)

Toggles the specified flags in-place.

Trait Implementations

impl Debug for SyntaxBehavior

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

impl BitOr for SyntaxBehavior

type Output = SyntaxBehavior

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

impl BitXor for SyntaxBehavior

type Output = SyntaxBehavior

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

impl BitAnd for SyntaxBehavior

type Output = SyntaxBehavior

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

impl Sub for SyntaxBehavior

type Output = SyntaxBehavior

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

impl Not for SyntaxBehavior

type Output = SyntaxBehavior

fn not(self) -> SyntaxBehavior

impl FromIterator<SyntaxBehavior> for SyntaxBehavior

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

Derived Implementations

impl Hash for SyntaxBehavior

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

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

impl Ord for SyntaxBehavior

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

impl PartialOrd for SyntaxBehavior

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

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

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

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

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

impl Clone for SyntaxBehavior

fn clone(&self) -> SyntaxBehavior

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

impl Eq for SyntaxBehavior

impl PartialEq for SyntaxBehavior

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

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

impl Copy for SyntaxBehavior