[][src]Struct core_ux::u61

pub struct u61(_);

The 61-bit unsigned integer type.

Implementations

impl u61[src]

pub const MAX: Self[src]

pub const MIN: Self[src]

impl u61[src]

pub fn min_value() -> u61[src]

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

pub fn max_value() -> u61[src]

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

pub fn new(value: u64) -> u61[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::*;

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::*;

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::*;

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<u61> for u61[src]

type Output = u61

The resulting type after applying the + operator.

impl Binary for u61[src]

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

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

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAnd<u61> for u61[src]

type Output = u61

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAndAssign<u61> for u61[src]

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

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

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOr<u61> for u61[src]

type Output = u61

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOrAssign<u61> for u61[src]

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

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

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXor<u61> for u61[src]

type Output = u61

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXorAssign<u61> for u61[src]

impl Clone for u61[src]

impl Copy for u61[src]

impl Debug for u61[src]

impl Default for u61[src]

impl Display for u61[src]

impl Eq for u61[src]

impl From<u10> for u61[src]

impl From<u11> for u61[src]

impl From<u12> for u61[src]

impl From<u13> for u61[src]

impl From<u14> for u61[src]

impl From<u15> for u61[src]

impl From<u16> for u61[src]

impl From<u17> for u61[src]

impl From<u18> for u61[src]

impl From<u19> for u61[src]

impl From<u2> for u61[src]

impl From<u20> for u61[src]

impl From<u21> for u61[src]

impl From<u22> for u61[src]

impl From<u23> for u61[src]

impl From<u24> for u61[src]

impl From<u25> for u61[src]

impl From<u26> for u61[src]

impl From<u27> for u61[src]

impl From<u28> for u61[src]

impl From<u29> for u61[src]

impl From<u3> for u61[src]

impl From<u30> for u61[src]

impl From<u31> for u61[src]

impl From<u32> for u61[src]

impl From<u33> for u61[src]

impl From<u34> for u61[src]

impl From<u35> for u61[src]

impl From<u36> for u61[src]

impl From<u37> for u61[src]

impl From<u38> for u61[src]

impl From<u39> for u61[src]

impl From<u4> for u61[src]

impl From<u40> for u61[src]

impl From<u41> for u61[src]

impl From<u42> for u61[src]

impl From<u43> for u61[src]

impl From<u44> for u61[src]

impl From<u45> for u61[src]

impl From<u46> for u61[src]

impl From<u47> for u61[src]

impl From<u48> for u61[src]

impl From<u49> for u61[src]

impl From<u5> for u61[src]

impl From<u50> for u61[src]

impl From<u51> for u61[src]

impl From<u52> for u61[src]

impl From<u53> for u61[src]

impl From<u54> for u61[src]

impl From<u55> for u61[src]

impl From<u56> for u61[src]

impl From<u57> for u61[src]

impl From<u58> for u61[src]

impl From<u59> for u61[src]

impl From<u6> for u61[src]

impl From<u60> for u61[src]

impl From<u61> for u64[src]

impl From<u61> for u62[src]

impl From<u61> for u63[src]

impl From<u7> for u61[src]

impl From<u8> for u61[src]

impl From<u9> for u61[src]

impl Hash for u61[src]

impl LowerHex for u61[src]

impl Not for u61[src]

type Output = u61

The resulting type after applying the ! operator.

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

type Output = <u61 as Not>::Output

The resulting type after applying the ! operator.

impl Octal for u61[src]

impl Ord for u61[src]

impl PartialEq<u61> for u61[src]

impl PartialOrd<u61> for u61[src]

impl<T> Shl<T> for u61 where
    u64: Shl<T, Output = u64>, 
[src]

type Output = u61

The resulting type after applying the << operator.

impl<T> ShlAssign<T> for u61 where
    u64: ShlAssign<T>, 
[src]

impl<T> Shr<T> for u61 where
    u64: Shr<T, Output = u64>, 
[src]

type Output = u61

The resulting type after applying the >> operator.

impl<T> ShrAssign<T> for u61 where
    u64: ShrAssign<T>, 
[src]

impl Sub<u61> for u61[src]

type Output = u61

The resulting type after applying the - operator.

impl UpperHex for u61[src]

Auto Trait Implementations

impl Send for u61[src]

impl Sync for u61[src]

impl Unpin for u61[src]

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, 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.