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

pub struct B0;

The type-level bit 0.

Methods

impl B0
[src]

[src]

Instantiates a singleton representing this bit.

Trait Implementations

impl Eq for B0
[src]

impl PartialEq for B0
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Ord for B0
[src]

[src]

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

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd for B0
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for B0
[src]

impl Hash for B0
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

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

impl Debug for B0
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for B0
[src]

[src]

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

impl Bit for B0
[src]

U8: u8 = 0

BOOL: bool = false

[src]

[src]

impl Not for B0
[src]

Not of 0 (!0 = 1)

The resulting type after applying the ! operator.

[src]

Performs the unary ! operation.

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

And with 0 ( 0 & B = 0)

The resulting type after applying the & operator.

[src]

Performs the & operation.

impl BitAnd<B0> for B1
[src]

And with 1 ( 1 & 0 = 0)

The resulting type after applying the & operator.

[src]

Performs the & operation.

impl BitOr<B0> for B0
[src]

Or with 0 ( 0 | 0 = 0)

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl BitOr<B1> for B0
[src]

Or with 0 ( 0 | 1 = 1)

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl BitXor<B0> for B0
[src]

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

The resulting type after applying the ^ operator.

[src]

Performs the ^ operation.

impl BitXor<B0> for B1
[src]

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

The resulting type after applying the ^ operator.

[src]

Performs the ^ operation.

impl BitXor<B1> for B0
[src]

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

The resulting type after applying the ^ operator.

[src]

Performs the ^ operation.

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.

impl Cmp<B0> for B1
[src]

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

impl Min<B0> for B0
[src]

The type of the minimum of Self and Rhs

[src]

Method returning the minimum

impl Min<B1> for B0
[src]

The type of the minimum of Self and Rhs

[src]

Method returning the minimum

impl Min<B0> for B1
[src]

The type of the minimum of Self and Rhs

[src]

Method returning the minimum

impl Max<B0> for B0
[src]

The type of the maximum of Self and Rhs

[src]

Method returning the maximum

impl Max<B1> for B0
[src]

The type of the maximum of Self and Rhs

[src]

Method returning the maximum

impl Max<B0> for B1
[src]

The type of the maximum of Self and Rhs

[src]

Method returning the maximum

impl Add<B0> for UTerm
[src]

UTerm + B0 = UTerm

The resulting type after applying the + operator.

[src]

Performs the + operation.

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

U + B0 = U

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Sub<B0> for UTerm
[src]

UTerm - B0 = Term

The resulting type after applying the - operator.

[src]

Performs the - operation.

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

UInt - B0 = UInt

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl Shl<B0> for UTerm
[src]

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

The resulting type after applying the << operator.

[src]

Performs the << operation.

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

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

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl Shr<B0> for UTerm
[src]

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

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

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

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

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

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

UInt * B0 = UTerm

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Mul<B0> for UTerm
[src]

UTerm * B0 = UTerm

The resulting type after applying the * operator.

[src]

Performs the * operation.

Auto Trait Implementations

impl Send for B0

impl Sync for B0