[−]Struct byte_struct::typenum::consts::B0
The type-level bit 0.
Methods
impl B0
Trait Implementations
impl Eq for B0
impl BitOr<B0> for B0
Or with 0 ( 0 | 0 = 0)
type Output = B0
The resulting type after applying the | operator.
fn bitor(self, B0) -> <B0 as BitOr<B0>>::Output
impl BitOr<B1> for B0
Or with 0 ( 0 | 1 = 1)
type Output = B1
The resulting type after applying the | operator.
fn bitor(self, B1) -> <B0 as BitOr<B1>>::Output
impl Max<B0> for B0
impl Max<B1> for B0
impl Max<B0> for B1
impl Hash for B0
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
__H: Hasher,
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<U, B> Mul<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
B: Bit,
U: Unsigned,
UInt * B0 = UTerm
type Output = UTerm
The resulting type after applying the * operator.
fn mul(self, B0) -> <UInt<U, B> as Mul<B0>>::Output
impl Mul<B0> for UTerm
UTerm * B0 = UTerm
type Output = UTerm
The resulting type after applying the * operator.
fn mul(self, B0) -> <UTerm as Mul<B0>>::Output
impl Copy for B0
impl Default for B0
impl<U, B> Shr<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
B: Bit,
U: Unsigned,
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) -> <UInt<U, B> as Shr<B0>>::Output
impl Shr<B0> for UTerm
Shifting right UTerm by a 0 bit: UTerm >> B0 = UTerm
type Output = UTerm
The resulting type after applying the >> operator.
fn shr(self, B0) -> <UTerm as Shr<B0>>::Output
impl Bit for B0
impl PartialEq<B0> for B0
fn eq(&self, other: &B0) -> bool
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Sub<B0> for UTerm
UTerm - B0 = Term
type Output = UTerm
The resulting type after applying the - operator.
fn sub(self, B0) -> <UTerm as Sub<B0>>::Output
impl<U, B> Sub<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
B: Bit,
U: Unsigned,
UInt - B0 = UInt
type Output = UInt<U, B>
The resulting type after applying the - operator.
fn sub(self, B0) -> <UInt<U, B> as Sub<B0>>::Output
impl Min<B0> for B0
impl Min<B0> for B1
impl Min<B1> for B0
impl<U, B> Shl<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
B: Bit,
U: Unsigned,
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) -> <UInt<U, B> as Shl<B0>>::Output
impl Shl<B0> for UTerm
Shifting UTerm by a 0 bit: UTerm << B0 = UTerm
type Output = UTerm
The resulting type after applying the << operator.
fn shl(self, B0) -> <UTerm as Shl<B0>>::Output
impl BitAnd<B0> for B1
And with 1 ( 1 & 0 = 0)
type Output = B0
The resulting type after applying the & operator.
fn bitand(self, B0) -> <B1 as BitAnd<B0>>::Output
impl<Rhs> BitAnd<Rhs> for B0 where
Rhs: Bit,
Rhs: Bit,
And with 0 ( 0 & B = 0)
type Output = B0
The resulting type after applying the & operator.
fn bitand(self, Rhs) -> <B0 as BitAnd<Rhs>>::Output
impl Clone for B0
fn clone(&self) -> B0
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Ord for B0
fn cmp(&self, other: &B0) -> Ordering
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
fn clamp(self, min: Self, max: Self) -> Self[src]
clamp)Restrict a value to a certain interval. Read more
impl Debug for B0
impl<U, B> Add<B0> for UInt<U, B> where
B: Bit,
U: Unsigned,
B: Bit,
U: Unsigned,
U + B0 = U
type Output = UInt<U, B>
The resulting type after applying the + operator.
fn add(self, B0) -> <UInt<U, B> as Add<B0>>::Output
impl Add<B0> for UTerm
UTerm + B0 = UTerm
type Output = UTerm
The resulting type after applying the + operator.
fn add(self, B0) -> <UTerm as Add<B0>>::Output
impl PartialOrd<B0> for B0
fn partial_cmp(&self, other: &B0) -> Option<Ordering>
#[must_use]
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
#[must_use]
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
#[must_use]
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
#[must_use]
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 Cmp<B0> for B1
type Output = Greater
The result of the comparison. It should only ever be one of Greater, Less, or Equal.
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 Not for B0
Not of 0 (!0 = 1)
type Output = B1
The resulting type after applying the ! operator.
fn not(self) -> <B0 as Not>::Output
impl BitXor<B0> for B0
Xor between 0 and 0 ( 0 ^ 0 = 0)
type Output = B0
The resulting type after applying the ^ operator.
fn bitxor(self, B0) -> <B0 as BitXor<B0>>::Output
impl BitXor<B0> for B1
Xor between 1 and 0 ( 1 ^ 0 = 1)
type Output = B1
The resulting type after applying the ^ operator.
fn bitxor(self, B0) -> <B1 as BitXor<B0>>::Output
impl BitXor<B1> for B0
Xor between 0 and 1 ( 0 ^ 1 = 1)
Auto Trait Implementations
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<A, B> IsGreater<B> for A where
A: Cmp<B> + IsGreaterPrivate<B, <A as Cmp<B>>::Output>,
A: Cmp<B> + IsGreaterPrivate<B, <A as Cmp<B>>::Output>,
type Output = <A as IsGreaterPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_greater(self, B) -> <A as IsGreater<B>>::Output
impl<A, B> IsLessOrEqual<B> for A where
A: Cmp<B> + IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>,
A: Cmp<B> + IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>,
type Output = <A as IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_less_or_equal(self, B) -> <A as IsLessOrEqual<B>>::Output
impl<A, B> IsNotEqual<B> for A where
A: Cmp<B> + IsNotEqualPrivate<B, <A as Cmp<B>>::Output>,
A: Cmp<B> + IsNotEqualPrivate<B, <A as Cmp<B>>::Output>,
type Output = <A as IsNotEqualPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_not_equal(self, B) -> <A as IsNotEqual<B>>::Output
impl<A, B> IsLess<B> for A where
A: Cmp<B> + IsLessPrivate<B, <A as Cmp<B>>::Output>,
A: Cmp<B> + IsLessPrivate<B, <A as Cmp<B>>::Output>,
type Output = <A as IsLessPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_less(self, B) -> <A as IsLess<B>>::Output
impl<A, B> IsGreaterOrEqual<B> for A where
A: Cmp<B> + IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>,
A: Cmp<B> + IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>,
type Output = <A as IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_greater_or_equal(self, B) -> <A as IsGreaterOrEqual<B>>::Output
impl<A, B> IsEqual<B> for A where
A: Cmp<B> + IsEqualPrivate<B, <A as Cmp<B>>::Output>,
A: Cmp<B> + IsEqualPrivate<B, <A as Cmp<B>>::Output>,
type Output = <A as IsEqualPrivate<B, <A as Cmp<B>>::Output>>::Output
The type representing either True or False
fn is_equal(self, B) -> <A as IsEqual<B>>::Output
impl<T> Same<T> for T
type Output = T
Should always be Self