Struct typenum::bit::B1
[−]
[src]
pub struct B1;
The type-level bit 1.
Methods
impl B1[src]
Trait Implementations
impl Eq for B1[src]
impl PartialEq for B1[src]
fn eq(&self, __arg_0: &B1) -> bool[src]
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[src]
This method tests for !=.
impl Ord for B1[src]
fn cmp(&self, __arg_0: &B1) -> Ordering[src]
This method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
impl PartialOrd for B1[src]
fn partial_cmp(&self, __arg_0: &B1) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
This 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]
This 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]
This 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]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Clone for B1[src]
fn clone(&self) -> B1[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for B1[src]
impl Hash for B1[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
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]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for B1[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Default for B1[src]
impl Bit for B1[src]
impl NonZero for B1[src]
impl Not for B1[src]
Not of 1 (!1 = 0)
type Output = B0
The resulting type after applying the ! operator.
fn not(self) -> Self::Output[src]
Performs the unary ! operation.
impl BitAnd<B0> for B1[src]
And with 1 ( 1 & 0 = 0)
type Output = B0
The resulting type after applying the & operator.
fn bitand(self, _: B0) -> Self::Output[src]
Performs the & operation.
impl BitAnd<B1> for B1[src]
And with 1 ( 1 & 1 = 1)
type Output = B1
The resulting type after applying the & operator.
fn bitand(self, _: B1) -> Self::Output[src]
Performs the & operation.
impl BitOr<B1> for B0[src]
Or with 0 ( 0 | 1 = 1)
type Output = B1
The resulting type after applying the | operator.
fn bitor(self, _: B1) -> Self::Output[src]
Performs the | operation.
impl<Rhs: Bit> BitOr<Rhs> for B1[src]
Or with 1 ( 1 | B = 1)
type Output = B1
The resulting type after applying the | operator.
fn bitor(self, _: Rhs) -> Self::Output[src]
Performs the | operation.
impl BitXor<B0> for B1[src]
Xor between 1 and 0 ( 1 ^ 0 = 1)
type Output = B1
The resulting type after applying the ^ operator.
fn bitxor(self, _: B0) -> Self::Output[src]
Performs the ^ operation.
impl BitXor<B1> for B0[src]
Xor between 0 and 1 ( 0 ^ 1 = 1)
type Output = B1
The resulting type after applying the ^ operator.
fn bitxor(self, _: B1) -> Self::Output[src]
Performs the ^ operation.
impl BitXor<B1> for B1[src]
Xor between 1 and 1 ( 1 ^ 1 = 0)
type Output = B0
The resulting type after applying the ^ operator.
fn bitxor(self, _: B1) -> Self::Output[src]
Performs the ^ operation.
impl Cmp<B1> for B0[src]
type Output = Less
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Cmp<B0> for B1[src]
type Output = Greater
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Cmp<B1> for B1[src]
type Output = Equal
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
impl Min<B1> for B0[src]
type Output = B0
The type of the minimum of Self and Rhs
fn min(self, _: B1) -> B0[src]
Method returning the minimum
impl Min<B0> for B1[src]
type Output = B0
The type of the minimum of Self and Rhs
fn min(self, rhs: B0) -> B0[src]
Method returning the minimum
impl Min<B1> for B1[src]
type Output = B1
The type of the minimum of Self and Rhs
fn min(self, _: B1) -> B1[src]
Method returning the minimum
impl Max<B1> for B0[src]
type Output = B1
The type of the maximum of Self and Rhs
fn max(self, rhs: B1) -> B1[src]
Method returning the maximum
impl Max<B0> for B1[src]
type Output = B1
The type of the maximum of Self and Rhs
fn max(self, _: B0) -> B1[src]
Method returning the maximum
impl Max<B1> for B1[src]
type Output = B1
The type of the maximum of Self and Rhs
fn max(self, _: B1) -> B1[src]
Method returning the maximum
impl Add<B1> for UTerm[src]
UTerm + B1 = UInt<UTerm, B1>
type Output = UInt<UTerm, B1>
The resulting type after applying the + operator.
fn add(self, _: B1) -> Self::Output[src]
Performs the + operation.
impl<U: Unsigned> Add<B1> for UInt<U, B0>[src]
UInt<U, B0> + B1 = UInt<U + B1>
type Output = UInt<U, B1>
The resulting type after applying the + operator.
fn add(self, _: B1) -> Self::Output[src]
Performs the + operation.
impl<U: Unsigned> Add<B1> for UInt<U, B1> where
U: Add<B1>,
Add1<U>: Unsigned, [src]
U: Add<B1>,
Add1<U>: Unsigned,
UInt<U, B1> + B1 = UInt<U + B1, B0>
type Output = UInt<Add1<U>, B0>
The resulting type after applying the + operator.
fn add(self, _: B1) -> Self::Output[src]
Performs the + operation.
impl<U: Unsigned, B: Bit> Sub<B1> for UInt<UInt<U, B>, B1>[src]
UInt<U, B1> - B1 = UInt<U, B0>
type Output = UInt<UInt<U, B>, B0>
The resulting type after applying the - operator.
fn sub(self, _: B1) -> Self::Output[src]
Performs the - operation.
impl Sub<B1> for UInt<UTerm, B1>[src]
UInt<UTerm, B1> - B1 = UTerm
type Output = UTerm
The resulting type after applying the - operator.
fn sub(self, _: B1) -> Self::Output[src]
Performs the - operation.
impl<U: Unsigned> Sub<B1> for UInt<U, B0> where
U: Sub<B1>,
Sub1<U>: Unsigned, [src]
U: Sub<B1>,
Sub1<U>: Unsigned,
UInt<U, B0> - B1 = UInt<U - B1, B1>
type Output = UInt<Sub1<U>, B1>
The resulting type after applying the - operator.
fn sub(self, _: B1) -> Self::Output[src]
Performs the - operation.
impl Shl<B1> for UTerm[src]
Shifting UTerm by a 1 bit: UTerm << B1 = UTerm
type Output = UTerm
The resulting type after applying the << operator.
fn shl(self, _: B1) -> Self::Output[src]
Performs the << operation.
impl<U: Unsigned, B: Bit> Shl<B1> for UInt<U, B>[src]
Shifting left a UInt by a one bit: UInt<U, B> << B1 = UInt<UInt<U, B>, B0>
type Output = UInt<UInt<U, B>, B0>
The resulting type after applying the << operator.
fn shl(self, _: B1) -> Self::Output[src]
Performs the << operation.
impl Shr<B1> for UTerm[src]
Shifting right UTerm by a 1 bit: UTerm >> B1 = UTerm
type Output = UTerm
The resulting type after applying the >> operator.
fn shr(self, _: B1) -> Self::Output[src]
Performs the >> operation.
impl<U: Unsigned, B: Bit> Shr<B1> for UInt<U, B>[src]
Shifting right a UInt by a 1 bit: UInt<U, B> >> B1 = U
type Output = U
The resulting type after applying the >> operator.
fn shr(self, _: B1) -> Self::Output[src]
Performs the >> operation.
impl Mul<B1> for UTerm[src]
UTerm * B1 = UTerm
type Output = UTerm
The resulting type after applying the * operator.
fn mul(self, _: B1) -> Self::Output[src]
Performs the * operation.
impl<U: Unsigned, B: Bit> Mul<B1> for UInt<U, B>[src]
UInt * B1 = UInt