[][src]Struct breadx::auto::xprint::EvMask

#[repr(transparent)]pub struct EvMask {
    pub inner: i32,
}

Fields

inner: i32

Implementations

impl EvMask[src]

pub fn print_mask(&self) -> bool[src]

pub fn set_print_mask(&mut self, val: bool) -> &mut Self[src]

pub fn attribute_mask(&self) -> bool[src]

pub fn set_attribute_mask(&mut self, val: bool) -> &mut Self[src]

pub fn new(print_mask: bool, attribute_mask: bool) -> Self[src]

pub fn count_ones(&self) -> usize[src]

Trait Implementations

impl AsByteSequence for EvMask[src]

impl BitAnd<EvMask> for EvMask[src]

type Output = EvMask

The resulting type after applying the & operator.

impl Clone for EvMask[src]

impl Copy for EvMask[src]

impl Debug for EvMask[src]

impl Default for EvMask[src]

impl Eq for EvMask[src]

impl Not for EvMask[src]

type Output = EvMask

The resulting type after applying the ! operator.

impl Ord for EvMask[src]

impl PartialEq<EvMask> for EvMask[src]

impl PartialOrd<EvMask> for EvMask[src]

impl StructuralEq for EvMask[src]

impl StructuralPartialEq for EvMask[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.