Struct typenum::bit::B0 [−][src]
pub struct B0;
The type-level bit 0.
Methods
impl B0[src]
impl B0Trait Implementations
impl Eq for B0[src]
impl Eq for B0impl PartialEq for B0[src]
impl PartialEq for B0fn eq(&self, other: &B0) -> bool[src]
fn eq(&self, other: &B0) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Ord for B0[src]
impl Ord for B0fn cmp(&self, other: &B0) -> Ordering[src]
fn cmp(&self, other: &B0) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialOrd for B0[src]
impl PartialOrd for B0fn partial_cmp(&self, other: &B0) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &B0) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Clone for B0[src]
impl Clone for B0fn clone(&self) -> B0[src]
fn clone(&self) -> B0Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for B0[src]
impl Copy for B0impl Hash for B0[src]
impl Hash for B0fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for B0[src]
impl Debug for B0fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Default for B0[src]
impl Default for B0impl Bit for B0[src]
impl Bit for B0const U8: u8
U8: u8 = 0
const BOOL: bool
BOOL: bool = false
fn to_u8() -> u8[src]
fn to_u8() -> u8fn to_bool() -> bool[src]
fn to_bool() -> boolimpl Not for B0[src]
impl Not for B0Not of 0 (!0 = 1)
type Output = B1
The resulting type after applying the ! operator.
fn not(self) -> Self::Output[src]
fn not(self) -> Self::OutputPerforms the unary ! operation.
impl<Rhs: Bit> BitAnd<Rhs> for B0[src]
impl<Rhs: Bit> BitAnd<Rhs> for B0And with 0 ( 0 & B = 0)
type Output = B0
The resulting type after applying the & operator.
fn bitand(self, _: Rhs) -> Self::Output[src]
fn bitand(self, _: Rhs) -> Self::OutputPerforms the & operation.
impl BitAnd<B0> for B1[src]
impl BitAnd<B0> for B1And with 1 ( 1 & 0 = 0)
type Output = B0
The resulting type after applying the & operator.
fn bitand(self, _: B0) -> Self::Output[src]
fn bitand(self, _: B0) -> Self::OutputPerforms the & operation.
impl BitOr<B0> for B0[src]
impl BitOr<B0> for B0Or with 0 ( 0 | 0 = 0)
type Output = B0
The resulting type after applying the | operator.
fn bitor(self, _: B0) -> Self::Output[src]
fn bitor(self, _: B0) -> Self::OutputPerforms the | operation.
impl BitOr<B1> for B0[src]
impl BitOr<B1> for B0Or with 0 ( 0 | 1 = 1)
type Output = B1
The resulting type after applying the | operator.
fn bitor(self, _: B1) -> Self::Output[src]
fn bitor(self, _: B1) -> Self::OutputPerforms the | operation.
impl BitXor<B0> for B0[src]
impl BitXor<B0> for B0Xor between 0 and 0 ( 0 ^ 0 = 0)
type Output = B0
The resulting type after applying the ^ operator.
fn bitxor(self, _: B0) -> Self::Output[src]
fn bitxor(self, _: B0) -> Self::OutputPerforms the ^ operation.
impl BitXor<B0> for B1[src]
impl BitXor<B0> for B1Xor between 1 and 0 ( 1 ^ 0 = 1)
type Output = B1
The resulting type after applying the ^ operator.
fn bitxor(self, _: B0) -> Self::Output[src]
fn bitxor(self, _: B0) -> Self::OutputPerforms the ^ operation.
impl BitXor<B1> for B0[src]
impl BitXor<B1> for B0Xor between 0 and 1 ( 0 ^ 1 = 1)
type Output = B1
The resulting type after applying the ^ operator.
fn bitxor(self, _: B1) -> Self::Output[src]
fn bitxor(self, _: B1) -> Self::OutputPerforms the ^ operation.
impl Cmp<B0> for B0[src]
impl Cmp<B0> for B0type Output = Equal
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Cmp<B1> for B0[src]
impl Cmp<B1> for B0type Output = Less
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Cmp<B0> for B1[src]
impl Cmp<B0> for B1type Output = Greater
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Min<B0> for B0[src]
impl Min<B0> for B0type Output = B0
The type of the minimum of Self and Rhs
fn min(self, _: B0) -> B0[src]
fn min(self, _: B0) -> B0Method returning the minimum
impl Min<B1> for B0[src]
impl Min<B1> for B0type Output = B0
The type of the minimum of Self and Rhs
fn min(self, _: B1) -> B0[src]
fn min(self, _: B1) -> B0Method returning the minimum
impl Min<B0> for B1[src]
impl Min<B0> for B1type Output = B0
The type of the minimum of Self and Rhs
fn min(self, rhs: B0) -> B0[src]
fn min(self, rhs: B0) -> B0Method returning the minimum
impl Max<B0> for B0[src]
impl Max<B0> for B0type Output = B0
The type of the maximum of Self and Rhs
fn max(self, _: B0) -> B0[src]
fn max(self, _: B0) -> B0Method returning the maximum
impl Max<B1> for B0[src]
impl Max<B1> for B0type Output = B1
The type of the maximum of Self and Rhs
fn max(self, rhs: B1) -> B1[src]
fn max(self, rhs: B1) -> B1Method returning the maximum
impl Max<B0> for B1[src]
impl Max<B0> for B1type Output = B1
The type of the maximum of Self and Rhs
fn max(self, _: B0) -> B1[src]
fn max(self, _: B0) -> B1Method returning the maximum
impl Add<B0> for UTerm[src]
impl Add<B0> for UTermUTerm + B0 = UTerm
type Output = UTerm
The resulting type after applying the + operator.
fn add(self, _: B0) -> Self::Output[src]
fn add(self, _: B0) -> Self::OutputPerforms the + operation.
impl<U: Unsigned, B: Bit> Add<B0> for UInt<U, B>[src]
impl<U: Unsigned, B: Bit> Add<B0> for UInt<U, B>U + B0 = U
type Output = UInt<U, B>
The resulting type after applying the + operator.
fn add(self, _: B0) -> Self::Output[src]
fn add(self, _: B0) -> Self::OutputPerforms the + operation.
impl Sub<B0> for UTerm[src]
impl Sub<B0> for UTermUTerm - B0 = Term
type Output = UTerm
The resulting type after applying the - operator.
fn sub(self, _: B0) -> Self::Output[src]
fn sub(self, _: B0) -> Self::OutputPerforms the - operation.
impl<U: Unsigned, B: Bit> Sub<B0> for UInt<U, B>[src]
impl<U: Unsigned, B: Bit> Sub<B0> for UInt<U, B>UInt - B0 = UInt
type Output = UInt<U, B>
The resulting type after applying the - operator.
fn sub(self, _: B0) -> Self::Output[src]
fn sub(self, _: B0) -> Self::OutputPerforms the - operation.
impl Shl<B0> for UTerm[src]
impl Shl<B0> for UTermShifting UTerm by a 0 bit: UTerm << B0 = UTerm
type Output = UTerm
The resulting type after applying the << operator.
fn shl(self, _: B0) -> Self::Output[src]
fn shl(self, _: B0) -> Self::OutputPerforms the << operation.
impl<U: Unsigned, B: Bit> Shl<B0> for UInt<U, B>[src]
impl<U: Unsigned, B: Bit> Shl<B0> for UInt<U, B>Shifting left any unsigned by a zero bit: U << B0 = U
type Output = UInt<U, B>
The resulting type after applying the << operator.
fn shl(self, _: B0) -> Self::Output[src]
fn shl(self, _: B0) -> Self::OutputPerforms the << operation.
impl Shr<B0> for UTerm[src]
impl Shr<B0> for UTermShifting right UTerm by a 0 bit: UTerm >> B0 = UTerm
type Output = UTerm
The resulting type after applying the >> operator.
fn shr(self, _: B0) -> Self::Output[src]
fn shr(self, _: B0) -> Self::OutputPerforms the >> operation.
impl<U: Unsigned, B: Bit> Shr<B0> for UInt<U, B>[src]
impl<U: Unsigned, B: Bit> Shr<B0> for UInt<U, B>Shifting right any unsigned by a zero bit: U >> B0 = U
type Output = UInt<U, B>
The resulting type after applying the >> operator.
fn shr(self, _: B0) -> Self::Output[src]
fn shr(self, _: B0) -> Self::OutputPerforms the >> operation.
impl<U: Unsigned, B: Bit> Mul<B0> for UInt<U, B>[src]
impl<U: Unsigned, B: Bit> Mul<B0> for UInt<U, B>UInt * B0 = UTerm
type Output = UTerm
The resulting type after applying the * operator.
fn mul(self, _: B0) -> Self::Output[src]
fn mul(self, _: B0) -> Self::OutputPerforms the * operation.
impl Mul<B0> for UTerm[src]
impl Mul<B0> for UTermUTerm * B0 = UTerm