Struct typenum::uint::UTerm [−][src]
pub struct 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]
impl UTerm
Trait Implementations
impl Eq for UTerm
[src]
impl Eq for UTerm
impl PartialEq for UTerm
[src]
impl PartialEq for UTerm
fn eq(&self, other: &UTerm) -> bool
[src]
fn eq(&self, other: &UTerm) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
This method tests for !=
.
impl Ord for UTerm
[src]
impl Ord for UTerm
fn cmp(&self, other: &UTerm) -> Ordering
[src]
fn cmp(&self, other: &UTerm) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl PartialOrd for UTerm
[src]
impl PartialOrd for UTerm
fn partial_cmp(&self, other: &UTerm) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &UTerm) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
fn le(&self, other: &Rhs) -> bool
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) -> bool
1.0.0[src]
fn gt(&self, other: &Rhs) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
fn ge(&self, other: &Rhs) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Clone for UTerm
[src]
impl Clone for UTerm
fn clone(&self) -> UTerm
[src]
fn clone(&self) -> UTerm
Returns 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 UTerm
[src]
impl Copy for UTerm
impl Hash for UTerm
[src]
impl Hash for UTerm
fn 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 UTerm
[src]
impl Debug for UTerm
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Default for UTerm
[src]
impl Default for UTerm
impl Unsigned for UTerm
[src]
impl Unsigned for UTerm
const U8: u8
U8: u8 = 0
const U16: u16
U16: u16 = 0
const U32: u32
U32: u32 = 0
const U64: u64
U64: u64 = 0
const USIZE: usize
USIZE: usize = 0
const I8: i8
I8: i8 = 0
const I16: i16
I16: i16 = 0
const I32: i32
I32: i32 = 0
const I64: i64
I64: i64 = 0
const ISIZE: isize
ISIZE: isize = 0
fn to_u8() -> u8
[src]
fn to_u8() -> u8
fn to_u16() -> u16
[src]
fn to_u16() -> u16
fn to_u32() -> u32
[src]
fn to_u32() -> u32
fn to_u64() -> u64
[src]
fn to_u64() -> u64
fn to_usize() -> usize
[src]
fn to_usize() -> usize
fn to_i8() -> i8
[src]
fn to_i8() -> i8
fn to_i16() -> i16
[src]
fn to_i16() -> i16
fn to_i32() -> i32
[src]
fn to_i32() -> i32
fn to_i64() -> i64
[src]
fn to_i64() -> i64
fn to_isize() -> isize
[src]
fn to_isize() -> isize
impl Len for UTerm
[src]
impl Len for UTerm
Length of UTerm
by itself is 0
type Output = U0
The length as a type-level unsigned integer.
fn len(&self) -> Self::Output
[src]
fn len(&self) -> Self::Output
This function isn't used in this crate, but may be useful for others.
impl Add<B0> for UTerm
[src]
impl Add<B0> for UTerm
UTerm + B0 = UTerm
type Output = UTerm
The resulting type after applying the +
operator.
fn add(self, _: B0) -> Self::Output
[src]
fn add(self, _: B0) -> Self::Output
Performs the +
operation.
impl Add<B1> for UTerm
[src]
impl Add<B1> for UTerm
UTerm + B1 = UInt<UTerm, B1>
type Output = UInt<UTerm, B1>
The resulting type after applying the +
operator.
fn add(self, _: B1) -> Self::Output
[src]
fn add(self, _: B1) -> Self::Output
Performs the +
operation.
impl<U: Unsigned> Add<U> for UTerm
[src]
impl<U: Unsigned> Add<U> for UTerm
UTerm + U = U
type Output = U
The resulting type after applying the +
operator.
fn add(self, _: U) -> Self::Output
[src]
fn add(self, _: U) -> Self::Output
Performs the +
operation.
impl<U: Unsigned, B: Bit> Add<UTerm> for UInt<U, B>
[src]
impl<U: Unsigned, B: Bit> Add<UTerm> for UInt<U, B>
UInt<U, B> + UTerm = UInt<U, B>
type Output = UInt<U, B>
The resulting type after applying the +
operator.
fn add(self, _: UTerm) -> Self::Output
[src]
fn add(self, _: UTerm) -> Self::Output
Performs the +
operation.
impl Sub<B0> for UTerm
[src]
impl Sub<B0> for UTerm
UTerm - B0 = Term
type Output = UTerm
The resulting type after applying the -
operator.
fn sub(self, _: B0) -> Self::Output
[src]
fn sub(self, _: B0) -> Self::Output
Performs the -
operation.
impl Sub<UTerm> for UTerm
[src]
impl Sub<UTerm> for UTerm
UTerm - UTerm = UTerm
type Output = UTerm
The resulting type after applying the -
operator.
fn sub(self, _: UTerm) -> Self::Output
[src]
fn sub(self, _: UTerm) -> Self::Output
Performs the -
operation.
impl<Ur: Unsigned> BitAnd<Ur> for UTerm
[src]
impl<Ur: Unsigned> BitAnd<Ur> for UTerm
0 & X = 0
type Output = UTerm
The resulting type after applying the &
operator.
fn bitand(self, _: Ur) -> Self::Output
[src]
fn bitand(self, _: Ur) -> Self::Output
Performs the &
operation.
impl<U: Unsigned> BitOr<U> for UTerm
[src]
impl<U: Unsigned> BitOr<U> for UTerm
UTerm | X = X
type Output = U
The resulting type after applying the |
operator.
fn bitor(self, _: U) -> Self::Output
[src]
fn bitor(self, _: U) -> Self::Output
Performs the |
operation.
impl<B: Bit, U: Unsigned> BitOr<UTerm> for UInt<U, B>
[src]
impl<B: Bit, U: Unsigned> BitOr<UTerm> for UInt<U, B>
X | UTerm = X
type Output = Self
The resulting type after applying the |
operator.
fn bitor(self, _: UTerm) -> Self::Output
[src]
fn bitor(self, _: UTerm) -> Self::Output
Performs the |
operation.
impl<Ur: Unsigned> BitXor<Ur> for UTerm
[src]
impl<Ur: Unsigned> BitXor<Ur> for UTerm
0 ^ X = X
type Output = Ur
The resulting type after applying the ^
operator.
fn bitxor(self, _: Ur) -> Self::Output
[src]
fn bitxor(self, _: Ur) -> Self::Output
Performs the ^
operation.
impl Shl<B0> for UTerm
[src]
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) -> Self::Output
[src]
fn shl(self, _: B0) -> Self::Output
Performs the <<
operation.
impl Shl<B1> for UTerm
[src]
impl Shl<B1> for UTerm
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]
fn shl(self, _: B1) -> Self::Output
Performs the <<
operation.
impl<U: Unsigned, B: Bit> Shl<UTerm> for UInt<U, B>
[src]
impl<U: Unsigned, B: Bit> Shl<UTerm> for UInt<U, B>
Shifting left UInt
by UTerm
: UInt<U, B> << UTerm = UInt<U, B>
type Output = UInt<U, B>
The resulting type after applying the <<
operator.
fn shl(self, _: UTerm) -> Self::Output
[src]
fn shl(self, _: UTerm) -> Self::Output
Performs the <<
operation.
impl<U: Unsigned> Shl<U> for UTerm
[src]
impl<U: Unsigned> Shl<U> for UTerm
Shifting left UTerm
by an unsigned integer: UTerm << U = UTerm
type Output = UTerm
The resulting type after applying the <<
operator.
fn shl(self, _: U) -> Self::Output
[src]
fn shl(self, _: U) -> Self::Output
Performs the <<
operation.
impl<U: Unsigned> Shr<U> for UTerm
[src]
impl<U: Unsigned> Shr<U> for UTerm
Shifting right a UTerm
by an unsigned integer: UTerm >> U = UTerm
type Output = UTerm
The resulting type after applying the >>
operator.
fn shr(self, _: U) -> Self::Output
[src]
fn shr(self, _: U) -> Self::Output
Performs the >>
operation.
impl<U: Unsigned, B: Bit> Shr<UTerm> for UInt<U, B>
[src]
impl<U: Unsigned, B: Bit> Shr<UTerm> for UInt<U, B>
Shifting right UInt
by UTerm
: UInt<U, B> >> UTerm = UInt<U, B>
type Output = UInt<U, B>
The resulting type after applying the >>
operator.
fn shr(self, _: UTerm) -> Self::Output
[src]
fn shr(self, _: UTerm) -> Self::Output
Performs the >>
operation.
impl Shr<B0> for UTerm
[src]
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) -> Self::Output
[src]
fn shr(self, _: B0) -> Self::Output
Performs the >>
operation.
impl Shr<B1> for UTerm
[src]
impl Shr<B1> for UTerm
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]
fn shr(self, _: B1) -> Self::Output
Performs the >>
operation.
impl Mul<B0> for UTerm
[src]
impl Mul<B0> for UTerm
UTerm * B0 = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
fn mul(self, _: B0) -> Self::Output
[src]
fn mul(self, _: B0) -> Self::Output
Performs the *
operation.
impl Mul<B1> for UTerm
[src]
impl Mul<B1> for UTerm
UTerm * B1 = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
fn mul(self, _: B1) -> Self::Output
[src]
fn mul(self, _: B1) -> Self::Output
Performs the *
operation.
impl<U: Unsigned, B: Bit> Mul<UTerm> for UInt<U, B>
[src]
impl<U: Unsigned, B: Bit> Mul<UTerm> for UInt<U, B>
UInt<U, B> * UTerm = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
fn mul(self, _: UTerm) -> Self::Output
[src]
fn mul(self, _: UTerm) -> Self::Output
Performs the *
operation.
impl<U: Unsigned> Mul<U> for UTerm
[src]
impl<U: Unsigned> Mul<U> for UTerm
UTerm * U = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
fn mul(self, _: U) -> Self::Output
[src]
fn mul(self, _: U) -> Self::Output
Performs the *
operation.
impl Cmp<UTerm> for UTerm
[src]
impl Cmp<UTerm> for UTerm
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]
impl<U: Unsigned, B: Bit> Cmp<UTerm> for UInt<U, B>
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]
impl<U: Unsigned, B: Bit> Cmp<UInt<U, B>> for UTerm
Zero < Nonzero
type Output = Less
The result of the comparison. It should only ever be one of Greater
, Less
, or Equal
.
impl<I> GetBit<I> for UTerm
[src]
impl<I> GetBit<I> for UTerm
impl<Ur: Unsigned, Br: Bit> Div<UInt<Ur, Br>> for UTerm
[src]
impl<Ur: Unsigned, Br: Bit> Div<UInt<Ur, Br>> for UTerm
type Output = UTerm
The resulting type after applying the /
operator.
fn div(self, _: UInt<Ur, Br>) -> Self::Output
[src]
fn div(self, _: UInt<Ur, Br>) -> Self::Output
Performs the /
operation.
impl<Ur: Unsigned, Br: Bit> Rem<UInt<Ur, Br>> for UTerm
[src]
impl<Ur: Unsigned, Br: Bit> Rem<UInt<Ur, Br>> for UTerm
type Output = UTerm
The resulting type after applying the %
operator.
fn rem(self, _: UInt<Ur, Br>) -> Self::Output
[src]
fn rem(self, _: UInt<Ur, Br>) -> Self::Output
Performs the %
operation.
impl<Ur: Unsigned, Br: Bit> PartialDiv<UInt<Ur, Br>> for UTerm
[src]
impl<Ur: Unsigned, Br: Bit> PartialDiv<UInt<Ur, Br>> for UTerm
type Output = UTerm
The type of the result of the division
fn partial_div(self, _: UInt<Ur, Br>) -> Self::Output
[src]
fn partial_div(self, _: UInt<Ur, Br>) -> Self::Output
Method for performing the division
impl<U> Min<U> for UTerm where
U: Unsigned,
[src]
impl<U> Min<U> for UTerm where
U: Unsigned,
type Output = UTerm
The type of the minimum of Self
and Rhs
fn min(self, _: U) -> Self::Output
[src]
fn min(self, _: U) -> Self::Output
Method returning the minimum
impl<U> Max<U> for UTerm where
U: Unsigned,
[src]
impl<U> Max<U> for UTerm where
U: Unsigned,
type Output = U
The type of the maximum of Self
and Rhs
fn max(self, rhs: U) -> Self::Output
[src]
fn max(self, rhs: U) -> Self::Output
Method returning the maximum
impl Pow<UTerm> for f32
[src]
impl Pow<UTerm> for f32
type Output = f32
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for f64
[src]
impl Pow<UTerm> for f64
type Output = f64
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for u8
[src]
impl Pow<UTerm> for u8
type Output = u8
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for u16
[src]
impl Pow<UTerm> for u16
type Output = u16
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for u32
[src]
impl Pow<UTerm> for u32
type Output = u32
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for u64
[src]
impl Pow<UTerm> for u64
type Output = u64
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for usize
[src]
impl Pow<UTerm> for usize
type Output = usize
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for i8
[src]
impl Pow<UTerm> for i8
type Output = i8
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for i16
[src]
impl Pow<UTerm> for i16
type Output = i16
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for i32
[src]
impl Pow<UTerm> for i32
type Output = i32
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for i64
[src]
impl Pow<UTerm> for i64
type Output = i64
The result of the exponentiation.
fn powi(self, _: UTerm) -> Self::Output
[src]
fn powi(self, _: UTerm) -> Self::Output
This function isn't used in this crate, but may be useful for others. It is implemented for primitives. Read more
impl Pow<UTerm> for isize
[src]
impl Pow<UTerm> for isize