[][src]Struct breadx::auto::record::HType

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

Fields

inner: i32

Implementations

impl HType[src]

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

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

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

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

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

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

pub fn new(
    from_server_time: bool,
    from_client_time: bool,
    from_client_sequence: bool
) -> Self
[src]

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

Trait Implementations

impl AsByteSequence for HType[src]

impl BitAnd<HType> for HType[src]

type Output = HType

The resulting type after applying the & operator.

impl Clone for HType[src]

impl Copy for HType[src]

impl Debug for HType[src]

impl Default for HType[src]

impl Eq for HType[src]

impl Not for HType[src]

type Output = HType

The resulting type after applying the ! operator.

impl Ord for HType[src]

impl PartialEq<HType> for HType[src]

impl PartialOrd<HType> for HType[src]

impl StructuralEq for HType[src]

impl StructuralPartialEq for HType[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.