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

pub struct B0;

The type-level bit 0.

Methods

impl B0
[src]

Instantiates a singleton representing this bit.

Trait Implementations

impl Eq for B0
[src]

impl PartialEq for B0
[src]

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

This method tests for !=.

impl Ord for B0
[src]

This method returns an Ordering between self and other. Read more

impl PartialOrd for B0
[src]

This method returns an ordering between self and other values if one exists. Read more

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

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

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

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

impl Clone for B0
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for B0
[src]

impl Hash for B0
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Debug for B0
[src]

Formats the value using the given formatter.

impl Default for B0
[src]

Returns the "default value" for a type. Read more

impl Bit for B0
[src]

impl Not for B0
[src]

Not of 0 (!0 = 1)

The resulting type after applying the ! operator

The method for the unary ! operator

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

And with 0 ( 0 & B = 0)

The resulting type after applying the & operator

The method for the & operator

impl BitOr<B0> for B0
[src]

Or with 0 ( 0 | 0 = 0)

The resulting type after applying the | operator

The method for the | operator

impl BitOr<B1> for B0
[src]

Or with 0 ( 0 | 1 = 1)

The resulting type after applying the | operator

The method for the | operator

impl BitXor<B0> for B0
[src]

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

The resulting type after applying the ^ operator

The method for the ^ operator

impl BitXor<B1> for B0
[src]

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

The resulting type after applying the ^ operator

The method for the ^ operator

impl Cmp<B0> for B0
[src]

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

impl Cmp<B1> for B0
[src]

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