[][src]Struct typenum::bit::B0

pub struct B0;

The type-level bit 0.

Methods

impl B0[src]

pub fn new() -> B0[src]

Instantiates a singleton representing this bit.

Trait Implementations

impl Bit for B0[src]

impl Cmp<B0> for B0[src]

type Output = Equal

The result of the comparison. It should only ever be one of Greater, Less, or Equal.

impl Cmp<B1> for B0[src]

type Output = Less

The result of the comparison. It should only ever be one of Greater, Less, or Equal.

impl Cmp<B0> for B1[src]

type Output = Greater

The result of the comparison. It should only ever be one of Greater, Less, or Equal.

impl Min<B0> for B0[src]

type Output = B0

The type of the minimum of Self and Rhs

impl Min<B1> for B0[src]

type Output = B0

The type of the minimum of Self and Rhs

impl Min<B0> for B1[src]

type Output = B0

The type of the minimum of Self and Rhs

impl Max<B0> for B0[src]

type Output = B0

The type of the maximum of Self and Rhs

impl Max<B1> for B0[src]

type Output = B1

The type of the maximum of Self and Rhs

impl Max<B0> for B1[src]

type Output = B1

The type of the maximum of Self and Rhs

impl PartialEq<B0> for B0[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Eq for B0[src]

impl Ord for B0[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialOrd<B0> for B0[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Hash for B0[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

impl Add<B0> for UTerm[src]

UTerm + B0 = UTerm

type Output = UTerm

The resulting type after applying the + operator.

impl<U: Unsigned, B: Bit> Add<B0> for UInt<U, B>[src]

U + B0 = U

type Output = UInt<U, B>

The resulting type after applying the + operator.

impl Sub<B0> for UTerm[src]

UTerm - B0 = Term

type Output = UTerm

The resulting type after applying the - operator.

impl<U: Unsigned, B: Bit> Sub<B0> for UInt<U, B>[src]

UInt - B0 = UInt

type Output = UInt<U, B>

The resulting type after applying the - operator.

impl<U: Unsigned, B: Bit> Mul<B0> for UInt<U, B>[src]

UInt * B0 = UTerm

type Output = UTerm

The resulting type after applying the * operator.

impl Mul<B0> for UTerm[src]

UTerm * B0 = UTerm

type Output = UTerm

The resulting type after applying the * operator.

impl Not for B0[src]

Not of 0 (!0 = 1)

type Output = B1

The resulting type after applying the ! operator.

impl<Rhs: Bit> BitAnd<Rhs> for B0[src]

And with 0 ( 0 & B = 0)

type Output = B0

The resulting type after applying the & operator.

impl BitAnd<B0> for B1[src]

And with 1 ( 1 & 0 = 0)

type Output = B0

The resulting type after applying the & operator.

impl BitOr<B0> for B0[src]

Or with 0 ( 0 | 0 = 0)

type Output = B0

The resulting type after applying the | operator.

impl BitOr<B1> for B0[src]

Or with 0 ( 0 | 1 = 1)

type Output = B1

The resulting type after applying the | operator.

impl BitXor<B0> for B0[src]

Xor between 0 and 0 ( 0 ^ 0 = 0)

type Output = B0

The resulting type after applying the ^ operator.

impl BitXor<B0> for B1[src]

Xor between 1 and 0 ( 1 ^ 0 = 1)

type Output = B1

The resulting type after applying the ^ operator.

impl BitXor<B1> for B0[src]

Xor between 0 and 1 ( 0 ^ 1 = 1)

type Output = B1

The resulting type after applying the ^ operator.

impl Shl<B0> for UTerm[src]

Shifting UTerm by a 0 bit: UTerm << B0 = UTerm

type Output = UTerm

The resulting type after applying the << operator.

impl<U: Unsigned, B: Bit> Shl<B0> for UInt<U, B>[src]

Shifting left any unsigned by a zero bit: U << B0 = U

type Output = UInt<U, B>

The resulting type after applying the << operator.

impl Shr<B0> for UTerm[src]

Shifting right UTerm by a 0 bit: UTerm >> B0 = UTerm

type Output = UTerm

The resulting type after applying the >> operator.

impl<U: Unsigned, B: Bit> Shr<B0> for UInt<U, B>[src]

Shifting right any unsigned by a zero bit: U >> B0 = U

type Output = UInt<U, B>

The resulting type after applying the >> operator.

impl Debug for B0[src]

impl Copy for B0[src]

impl Clone for B0[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for B0[src]

Auto Trait Implementations

impl Unpin for B0

impl Send for B0

impl Sync for B0

Blanket Implementations

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

type Output = T

Should always be Self

impl<A, B> IsLess<B> for A where
    A: Cmp<B> + IsLessPrivate<B, <A as Cmp<B>>::Output>, 
[src]

type Output = <A as IsLessPrivate<B, <A as Cmp<B>>::Output>>::Output

The type representing either True or False

impl<A, B> IsEqual<B> for A where
    A: Cmp<B> + IsEqualPrivate<B, <A as Cmp<B>>::Output>, 
[src]

type Output = <A as IsEqualPrivate<B, <A as Cmp<B>>::Output>>::Output

The type representing either True or False

impl<A, B> IsGreater<B> for A where
    A: Cmp<B> + IsGreaterPrivate<B, <A as Cmp<B>>::Output>, 
[src]

type Output = <A as IsGreaterPrivate<B, <A as Cmp<B>>::Output>>::Output

The type representing either True or False

impl<A, B> IsLessOrEqual<B> for A where
    A: Cmp<B> + IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>, 
[src]

type Output = <A as IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>>::Output

The type representing either True or False

impl<A, B> IsNotEqual<B> for A where
    A: Cmp<B> + IsNotEqualPrivate<B, <A as Cmp<B>>::Output>, 
[src]

type Output = <A as IsNotEqualPrivate<B, <A as Cmp<B>>::Output>>::Output

The type representing either True or False

impl<A, B> IsGreaterOrEqual<B> for A where
    A: Cmp<B> + IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>, 
[src]

type Output = <A as IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>>::Output

The type representing either True or False

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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