Struct diffgeom::typenum::B0 []

pub struct B0;

The type-level bit 0.

Methods

impl B0

Instantiates a singleton representing this bit.

Trait Implementations

impl Clone for B0

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Cmp<B1> for B0

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

impl Cmp<B0> for B0

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

impl Bit for B0

impl Debug for B0

Formats the value using the given formatter.

impl Not for B0

Not of 0 (!0 = 1)

impl Eq for B0

impl BitXor<B0> for B0

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

impl BitXor<B1> for B0

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

impl Min<B0> for B0

The type of the minimum of Self and Rhs

Method returning the minimum

impl Min<B1> for B0

The type of the minimum of Self and Rhs

Method returning the minimum

impl Default for B0

impl BitOr<B0> for B0

Or with 0 ( 0 | 0 = 0)

impl BitOr<B1> for B0

Or with 0 ( 0 | 1 = 1)

impl PartialOrd<B0> for B0

impl Hash for B0

impl PartialEq<B0> for B0

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Max<B1> for B0

The type of the maximum of Self and Rhs

Method returning the maximum

impl Max<B0> for B0

The type of the maximum of Self and Rhs

Method returning the maximum

impl<Rhs> BitAnd<Rhs> for B0 where
    Rhs: Bit

And with 0 ( 0 & B = 0)

impl Ord for B0

impl Copy for B0