[−][src]Struct typenum::uint::UTerm
The terminating type for UInt
; it always comes after the most significant
bit. UTerm
by itself represents zero, which is aliased to U0
.
Methods
impl UTerm
[src][−]
Trait Implementations
impl<Un, Bn> GetBit<UTerm> for UInt<Un, Bn>
[src]
type Output = Bn
impl<I> GetBit<I> for UTerm
[src]
impl Unsigned for UTerm
[src][+]
impl Pow<UTerm> for f32
[src][+]
impl Pow<UTerm> for f64
[src][+]
impl Pow<UTerm> for u8
[src][+]
impl Pow<UTerm> for u16
[src][+]
impl Pow<UTerm> for u32
[src][+]
impl Pow<UTerm> for u64
[src][+]
impl Pow<UTerm> for usize
[src][+]
impl Pow<UTerm> for i8
[src][+]
impl Pow<UTerm> for i16
[src][+]
impl Pow<UTerm> for i32
[src][+]
impl Pow<UTerm> for i64
[src][+]
impl Pow<UTerm> for isize
[src][+]
impl Cmp<UTerm> for UTerm
[src]
Zero == Zero
type Output = Equal
The result of the comparison. It should only ever be one of Greater
, Less
, or Equal
.
impl<U: Unsigned, B: Bit> Cmp<UTerm> for UInt<U, B>
[src]
Nonzero > Zero
type Output = Greater
The result of the comparison. It should only ever be one of Greater
, Less
, or Equal
.
impl<U: Unsigned, B: Bit> Cmp<UInt<U, B>> for UTerm
[src]
Zero < Nonzero
type Output = Less
The result of the comparison. It should only ever be one of Greater
, Less
, or Equal
.
impl Len for UTerm
[src][+]
impl<Ur: Unsigned, Br: Bit> PartialDiv<UInt<Ur, Br>> for UTerm
[src][+]
impl<U> Min<U> for UTerm where
U: Unsigned,
[src][+]
U: Unsigned,
impl<U> Max<U> for UTerm where
U: Unsigned,
[src][+]
U: Unsigned,
impl Debug for UTerm
[src][+]
impl PartialEq<UTerm> for UTerm
[src][+]
impl Eq for UTerm
[src]
impl Ord for UTerm
[src][+]
impl PartialOrd<UTerm> for UTerm
[src][+]
impl Add<B0> for UTerm
[src][+]
impl Add<B1> for UTerm
[src][+]
impl<U: Unsigned> Add<U> for UTerm
[src][+]
impl<U: Unsigned, B: Bit> Add<UTerm> for UInt<U, B>
[src][+]
impl Sub<B0> for UTerm
[src][+]
impl Sub<UTerm> for UTerm
[src][+]
impl Mul<B0> for UTerm
[src][+]
impl Mul<B1> for UTerm
[src][+]
impl<U: Unsigned, B: Bit> Mul<UTerm> for UInt<U, B>
[src][+]
impl<U: Unsigned> Mul<U> for UTerm
[src][+]
impl<Ur: Unsigned, Br: Bit> Div<UInt<Ur, Br>> for UTerm
[src][+]
impl<Ur: Unsigned, Br: Bit> Rem<UInt<Ur, Br>> for UTerm
[src][+]
impl<Ur: Unsigned> BitAnd<Ur> for UTerm
[src][+]
impl<U: Unsigned> BitOr<U> for UTerm
[src][+]
impl<B: Bit, U: Unsigned> BitOr<UTerm> for UInt<U, B>
[src][+]
impl<Ur: Unsigned> BitXor<Ur> for UTerm
[src][+]
impl Shl<B0> for UTerm
[src][+]
impl Shl<B1> for UTerm
[src][+]
impl<U: Unsigned, B: Bit> Shl<UTerm> for UInt<U, B>
[src][+]
impl<U: Unsigned> Shl<U> for UTerm
[src][+]
impl<U: Unsigned> Shr<U> for UTerm
[src][+]
impl<U: Unsigned, B: Bit> Shr<UTerm> for UInt<U, B>
[src][+]
impl Shr<B0> for UTerm
[src][+]
impl Shr<B1> for UTerm
[src][+]
impl Hash for UTerm
[src][+]
impl Copy for UTerm
[src]
impl Clone for UTerm
[src][+]
impl Default for UTerm
[src][+]
Auto Trait Implementations
Blanket Implementations
impl<N, I, B> SetBit for N where
N: PrivateSetBit<I, B>,
<N as PrivateSetBit<I, B>>::Output: Trim,
[src]
N: PrivateSetBit<I, B>,
<N as PrivateSetBit<I, B>>::Output: Trim,
type Output = <<N as PrivateSetBit<I, B>>::Output as Trim>::Output
impl<T> Same for T
[src]
type Output = T
Should always be Self
impl<X, N> Pow for X where
N: Unsigned,
X: Unsigned + PrivatePow<UInt<UTerm, B1>, N>,
[src][−]
N: Unsigned,
X: Unsigned + PrivatePow<UInt<UTerm, B1>, N>,
type Output = <X as PrivatePow<UInt<UTerm, B1>, N>>::Output
The result of the exponentiation.
fn powi(Self, N) -> <X as Pow<N>>::Output
[src][−]
impl<M, N> PartialDiv for M where
M: Integer + Div<N> + Rem<N, Output = Z0>,
[src][−]
M: Integer + Div<N> + Rem<N, Output = Z0>,
type Output = <M as Div<N>>::Output
The type of the result of the division
fn partial_div(Self, N) -> <M as PartialDiv<N>>::Output
[src][−]
impl<A, B> IsLess for A where
A: Cmp<B> + IsLessPrivate<B, <A as Cmp<B>>::Output>,
[src][−]
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
[src][−]
impl<A, B> IsEqual for A where
A: Cmp<B> + IsEqualPrivate<B, <A as Cmp<B>>::Output>,
[src][−]
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
[src][−]
impl<A, B> IsGreater for A where
A: Cmp<B> + IsGreaterPrivate<B, <A as Cmp<B>>::Output>,
[src][−]
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
[src][−]
impl<A, B> IsLessOrEqual for A where
A: Cmp<B> + IsLessOrEqualPrivate<B, <A as Cmp<B>>::Output>,
[src][−]
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
[src][−]
impl<A, B> IsNotEqual for A where
A: Cmp<B> + IsNotEqualPrivate<B, <A as Cmp<B>>::Output>,
[src][−]
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
[src][−]
impl<A, B> IsGreaterOrEqual for A where
A: Cmp<B> + IsGreaterOrEqualPrivate<B, <A as Cmp<B>>::Output>,
[src][−]
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
[src][−]
impl<T> From for T
[src][−]
impl<T, U> TryFrom 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 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, U> Into for T where
U: From<T>,
[src][−]
U: From<T>,
impl<T> Borrow for T where
T: ?Sized,
[src][−]
T: ?Sized,
impl<T> BorrowMut 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,