Struct typenum::uint::UTerm [−][src]
The terminating type for UInt
; it always comes after the most significant
bit. UTerm
by itself represents zero, which is aliased to U0
.
Implementations
impl UTerm
[src]
Trait Implementations
impl Add<B0> for UTerm
[src]
UTerm + B0 = UTerm
type Output = UTerm
The resulting type after applying the +
operator.
fn add(self, _: B0) -> Self::Output
[src]
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]
impl<U: Unsigned> Add<U> for UTerm
[src]
UTerm + U = U
type Output = U
The resulting type after applying the +
operator.
fn add(self, rhs: U) -> Self::Output
[src]
impl<U: Unsigned, B: Bit> Add<UTerm> for UInt<U, B>
[src]
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]
impl<Ur: Unsigned> BitAnd<Ur> for UTerm
[src]
0 & X = 0
type Output = UTerm
The resulting type after applying the &
operator.
fn bitand(self, _: Ur) -> Self::Output
[src]
impl<U: Unsigned> BitOr<U> for UTerm
[src]
UTerm | X = X
type Output = U
The resulting type after applying the |
operator.
fn bitor(self, rhs: U) -> Self::Output
[src]
impl<B: Bit, U: Unsigned> BitOr<UTerm> for UInt<U, B>
[src]
X | UTerm = X
type Output = Self
The resulting type after applying the |
operator.
fn bitor(self, _: UTerm) -> Self::Output
[src]
impl<Ur: Unsigned> BitXor<Ur> for UTerm
[src]
0 ^ X = X
type Output = Ur
The resulting type after applying the ^
operator.
fn bitxor(self, rhs: Ur) -> Self::Output
[src]
impl Clone for UTerm
[src]
fn clone(&self) -> UTerm
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
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
.
fn compare<IM: InternalMarker>(&self, _: &UInt<U, B>) -> Self::Output
[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
.
fn compare<IM: InternalMarker>(&self, _: &UTerm) -> Self::Output
[src]
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
.
fn compare<IM: InternalMarker>(&self, _: &UTerm) -> Self::Output
[src]
impl Copy for UTerm
[src]
impl Debug for UTerm
[src]
impl Default for UTerm
[src]
impl<Ur: Unsigned, Br: Bit> Div<UInt<Ur, Br>> for UTerm
[src]
type Output = UTerm
The resulting type after applying the /
operator.
fn div(self, _: UInt<Ur, Br>) -> Self::Output
[src]
impl Eq for UTerm
[src]
impl Gcd<UTerm> for U0
[src]
gcd(0, 0) = 0
impl<X> Gcd<UTerm> for X where
X: Unsigned + NonZero,
[src]
X: Unsigned + NonZero,
gcd(x, 0) = x
type Output = X
The greatest common divisor.
impl<I> GetBit<I> for UTerm
[src]
impl<Un, Bn> GetBit<UTerm> for UInt<Un, Bn> where
Bn: Copy,
[src]
Bn: Copy,
impl Hash for UTerm
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Len for UTerm
[src]
Length of UTerm
by itself is 0
impl<U> Max<U> for UTerm where
U: Unsigned,
[src]
U: Unsigned,
impl<U> Min<U> for UTerm where
U: Unsigned,
[src]
U: Unsigned,
impl Mul<B0> for UTerm
[src]
UTerm * B0 = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
fn mul(self, _: B0) -> Self::Output
[src]
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]
impl<U: Unsigned> Mul<U> for UTerm
[src]
UTerm * U = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
fn mul(self, _: U) -> Self::Output
[src]
impl<U: Unsigned, B: Bit> Mul<UTerm> for UInt<U, B>
[src]
UInt<U, B> * UTerm = UTerm
type Output = UTerm
The resulting type after applying the *
operator.
fn mul(self, _: UTerm) -> Self::Output
[src]
impl Ord for UTerm
[src]
fn cmp(&self, other: &UTerm) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl<Ur: Unsigned, Br: Bit> PartialDiv<UInt<Ur, Br>> for UTerm
[src]
type Output = UTerm
The type of the result of the division
fn partial_div(self, _: UInt<Ur, Br>) -> Self::Output
[src]
impl PartialEq<UTerm> for UTerm
[src]
impl PartialOrd<UTerm> for UTerm
[src]
fn partial_cmp(&self, other: &UTerm) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Pow<UTerm> for f32
[src]
impl Pow<UTerm> for f64
[src]
impl Pow<UTerm> for i64
[src]
impl Pow<UTerm> for isize
[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<Ur: Unsigned, Br: Bit> Rem<UInt<Ur, Br>> for UTerm
[src]
type Output = UTerm
The resulting type after applying the %
operator.
fn rem(self, _: UInt<Ur, Br>) -> Self::Output
[src]
impl Shl<B0> for UTerm
[src]
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]
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]
impl<U: Unsigned> Shl<U> for UTerm
[src]
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]
impl<U: Unsigned, B: Bit> Shl<UTerm> for UInt<U, B>
[src]
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]
impl Shr<B0> for UTerm
[src]
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]
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]
impl<U: Unsigned> Shr<U> for UTerm
[src]
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]
impl<U: Unsigned, B: Bit> Shr<UTerm> for UInt<U, B>
[src]
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]
impl StructuralEq for UTerm
[src]
impl StructuralPartialEq for UTerm
[src]
impl Sub<B0> for UTerm
[src]
UTerm - B0 = Term
type Output = UTerm
The resulting type after applying the -
operator.
fn sub(self, _: B0) -> Self::Output
[src]
impl Sub<UTerm> for UTerm
[src]
UTerm - UTerm = UTerm
type Output = UTerm
The resulting type after applying the -
operator.
fn sub(self, _: UTerm) -> Self::Output
[src]
impl ToInt<i16> for UTerm
[src]
impl ToInt<i32> for UTerm
[src]
impl ToInt<i64> for UTerm
[src]
impl ToInt<i8> for UTerm
[src]
impl ToInt<u16> for UTerm
[src]
impl ToInt<u32> for UTerm
[src]
impl ToInt<u64> for UTerm
[src]
impl ToInt<u8> for UTerm
[src]
impl ToInt<usize> for UTerm
[src]
impl Unsigned for UTerm
[src]
const U8: u8
[src]
const U16: u16
[src]
const U32: u32
[src]
const U64: u64
[src]
const USIZE: usize
[src]
const I8: i8
[src]
const I16: i16
[src]
const I32: i32
[src]
const I64: i64
[src]
const ISIZE: isize
[src]
fn to_u8() -> u8
[src]
fn to_u16() -> u16
[src]
fn to_u32() -> u32
[src]
fn to_u64() -> u64
[src]
fn to_usize() -> usize
[src]
fn to_i8() -> i8
[src]
fn to_i16() -> i16
[src]
fn to_i32() -> i32
[src]
fn to_i64() -> i64
[src]
fn to_isize() -> isize
[src]
impl Zero for UTerm
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<X> Gcd<UTerm> for X where
X: Unsigned + NonZero,
[src]
X: Unsigned + NonZero,
type Output = X
The greatest common divisor.
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<X, N> Pow<N> 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.
pub fn powi(Self, N) -> <X as Pow<N>>::Output
[src]
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<N, I, B> SetBit<I, B> 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
pub fn set_bit<IM>(Self, I, B) -> <N as SetBit<I, B>>::Output where
IM: InternalMarker,
[src]
IM: InternalMarker,
impl<N> SquareRoot for N where
N: PrivateSquareRoot,
[src]
N: PrivateSquareRoot,
type Output = <N as PrivateSquareRoot>::Output
The result of the integer square root.
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.
pub 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>,