[][src]Struct ux_serde::u74

pub struct u74(_);

The 74-bit unsigned integer type.

Implementations

impl u74[src]

pub const MAX: Self[src]

pub const MIN: Self[src]

impl u74[src]

pub fn min_value() -> u74[src]

Returns the smallest value that can be represented by this integer type.

pub fn max_value() -> u74[src]

Returns the largest value that can be represented by this integer type.

pub fn new(value: u128) -> u74[src]

Crates a new variable

This function mainly exists as there is currently not a better way to construct these types. May be deprecated or removed if a better way to construct these types becomes available.

Examples

Basic usage:

use ux_serde::*;

assert_eq!(u31::new(64), u31::from(64u8));

Panic

This function will panic if value is not representable by this type

pub fn wrapping_sub(self, rhs: Self) -> Self[src]

Wrapping (modular) subtraction. Computes self - other, wrapping around at the boundary of the type.

Examples

Basic usage:

use ux_serde::*;

assert_eq!(i5::MIN.wrapping_sub(i5::new(1)), i5::MAX);

assert_eq!(i5::new(-10).wrapping_sub(i5::new(5)), i5::new(-15));
assert_eq!(i5::new(-15).wrapping_sub(i5::new(5)), i5::new(12));

pub fn wrapping_add(self, rhs: Self) -> Self[src]

Wrapping (modular) addition. Computes self + other, wrapping around at the boundary of the type.

Examples

Basic usage:

use ux_serde::*;

assert_eq!(i5::MAX.wrapping_add(i5::new(1)), i5::MIN);

assert_eq!(i5::new(10).wrapping_add(i5::new(5)), i5::new(15));
assert_eq!(i5::new(15).wrapping_add(i5::new(5)), i5::new(-12));

Trait Implementations

impl Add<u74> for u74[src]

type Output = u74

The resulting type after applying the + operator.

impl Binary for u74[src]

impl<'a> BitAnd<&'a u74> for u74[src]

type Output = <u74 as BitOr<u74>>::Output

The resulting type after applying the & operator.

impl<'a> BitAnd<&'a u74> for &'a u74[src]

type Output = <u74 as BitOr<u74>>::Output

The resulting type after applying the & operator.

impl BitAnd<u74> for u74[src]

type Output = u74

The resulting type after applying the & operator.

impl<'a> BitAnd<u74> for &'a u74[src]

type Output = <u74 as BitOr<u74>>::Output

The resulting type after applying the & operator.

impl BitAndAssign<u74> for u74[src]

impl<'a> BitOr<&'a u74> for u74[src]

type Output = <u74 as BitOr<u74>>::Output

The resulting type after applying the | operator.

impl<'a> BitOr<&'a u74> for &'a u74[src]

type Output = <u74 as BitOr<u74>>::Output

The resulting type after applying the | operator.

impl BitOr<u74> for u74[src]

type Output = u74

The resulting type after applying the | operator.

impl<'a> BitOr<u74> for &'a u74[src]

type Output = <u74 as BitOr<u74>>::Output

The resulting type after applying the | operator.

impl BitOrAssign<u74> for u74[src]

impl<'a> BitXor<&'a u74> for u74[src]

type Output = <u74 as BitOr<u74>>::Output

The resulting type after applying the ^ operator.

impl<'a> BitXor<&'a u74> for &'a u74[src]

type Output = <u74 as BitOr<u74>>::Output

The resulting type after applying the ^ operator.

impl BitXor<u74> for u74[src]

type Output = u74

The resulting type after applying the ^ operator.

impl<'a> BitXor<u74> for &'a u74[src]

type Output = <u74 as BitOr<u74>>::Output

The resulting type after applying the ^ operator.

impl BitXorAssign<u74> for u74[src]

impl Clone for u74[src]

impl Copy for u74[src]

impl Debug for u74[src]

impl Default for u74[src]

impl Display for u74[src]

impl Eq for u74[src]

impl Hash for u74[src]

impl LowerHex for u74[src]

impl Not for u74[src]

type Output = u74

The resulting type after applying the ! operator.

impl<'a> Not for &'a u74[src]

type Output = <u74 as Not>::Output

The resulting type after applying the ! operator.

impl Octal for u74[src]

impl Ord for u74[src]

impl PartialEq<u74> for u74[src]

impl PartialOrd<u74> for u74[src]

impl<T> Shl<T> for u74 where
    u128: Shl<T, Output = u128>, 
[src]

type Output = u74

The resulting type after applying the << operator.

impl<T> ShlAssign<T> for u74 where
    u128: ShlAssign<T>, 
[src]

impl<T> Shr<T> for u74 where
    u128: Shr<T, Output = u128>, 
[src]

type Output = u74

The resulting type after applying the >> operator.

impl<T> ShrAssign<T> for u74 where
    u128: ShrAssign<T>, 
[src]

impl Sub<u74> for u74[src]

type Output = u74

The resulting type after applying the - operator.

impl UpperHex for u74[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.