Struct diffgeom::typenum::B0  
                   
                       [−]
                   
               
pub struct B0;
The type-level bit 0.
Methods
impl B0
Trait Implementations
impl Clone for B0
fn clone(&self) -> B0
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Cmp<B1> for B0
type Output = Less
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Cmp<B0> for B0
type Output = Equal
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Bit for B0
impl Debug for B0
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
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
type Output = B0
The type of the minimum of Self and Rhs
fn min(self, B0) -> B0
Method returning the minimum
impl Min<B1> for B0
type Output = B0
The type of the minimum of Self and Rhs
fn min(self, B1) -> B0
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
fn partial_cmp(&self, __arg_0: &B0) -> Option<Ordering>
impl Hash for B0
impl PartialEq<B0> for B0
fn eq(&self, __arg_0: &B0) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl Max<B1> for B0
type Output = B1
The type of the maximum of Self and Rhs
fn max(self, rhs: B1) -> B1
Method returning the maximum
impl Max<B0> for B0
type Output = B0
The type of the maximum of Self and Rhs
fn max(self, B0) -> B0
Method returning the maximum
impl<Rhs> BitAnd<Rhs> for B0 where
    Rhs: Bit, 
Rhs: Bit,
And with 0 ( 0 & B = 0)