[][src]Struct core_ux::i58

pub struct i58(_);

The 58-bit signed integer type.

Implementations

impl i58[src]

The 58-bit signed integer type.

pub const MAX: Self[src]

pub const MIN: Self[src]

impl i58[src]

pub fn min_value() -> i58[src]

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

pub fn max_value() -> i58[src]

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

pub fn new(value: i64) -> i58[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<i58> for i58[src]

type Output = i58

The resulting type after applying the + operator.

impl Binary for i58[src]

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

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

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAnd<i58> for i58[src]

type Output = i58

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAndAssign<i58> for i58[src]

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

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

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOr<i58> for i58[src]

type Output = i58

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOrAssign<i58> for i58[src]

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

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

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXor<i58> for i58[src]

type Output = i58

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXorAssign<i58> for i58[src]

impl Clone for i58[src]

impl Copy for i58[src]

impl Debug for i58[src]

impl Default for i58[src]

impl Display for i58[src]

impl Eq for i58[src]

impl From<i10> for i58[src]

impl From<i11> for i58[src]

impl From<i12> for i58[src]

impl From<i13> for i58[src]

impl From<i14> for i58[src]

impl From<i15> for i58[src]

impl From<i16> for i58[src]

impl From<i17> for i58[src]

impl From<i18> for i58[src]

impl From<i19> for i58[src]

impl From<i2> for i58[src]

impl From<i20> for i58[src]

impl From<i21> for i58[src]

impl From<i22> for i58[src]

impl From<i23> for i58[src]

impl From<i24> for i58[src]

impl From<i25> for i58[src]

impl From<i26> for i58[src]

impl From<i27> for i58[src]

impl From<i28> for i58[src]

impl From<i29> for i58[src]

impl From<i3> for i58[src]

impl From<i30> for i58[src]

impl From<i31> for i58[src]

impl From<i32> for i58[src]

impl From<i33> for i58[src]

impl From<i34> for i58[src]

impl From<i35> for i58[src]

impl From<i36> for i58[src]

impl From<i37> for i58[src]

impl From<i38> for i58[src]

impl From<i39> for i58[src]

impl From<i4> for i58[src]

impl From<i40> for i58[src]

impl From<i41> for i58[src]

impl From<i42> for i58[src]

impl From<i43> for i58[src]

impl From<i44> for i58[src]

impl From<i45> for i58[src]

impl From<i46> for i58[src]

impl From<i47> for i58[src]

impl From<i48> for i58[src]

impl From<i49> for i58[src]

impl From<i5> for i58[src]

impl From<i50> for i58[src]

impl From<i51> for i58[src]

impl From<i52> for i58[src]

impl From<i53> for i58[src]

impl From<i54> for i58[src]

impl From<i55> for i58[src]

impl From<i56> for i58[src]

impl From<i57> for i58[src]

impl From<i58> for i64[src]

impl From<i58> for i59[src]

impl From<i58> for i60[src]

impl From<i58> for i61[src]

impl From<i58> for i62[src]

impl From<i58> for i63[src]

impl From<i6> for i58[src]

impl From<i7> for i58[src]

impl From<i8> for i58[src]

impl From<i9> for i58[src]

impl Hash for i58[src]

impl LowerHex for i58[src]

impl Not for i58[src]

type Output = i58

The resulting type after applying the ! operator.

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

type Output = <i58 as Not>::Output

The resulting type after applying the ! operator.

impl Octal for i58[src]

impl Ord for i58[src]

impl PartialEq<i58> for i58[src]

impl PartialOrd<i58> for i58[src]

impl<T> Shl<T> for i58 where
    i64: Shl<T, Output = i64>, 
[src]

type Output = i58

The resulting type after applying the << operator.

impl<T> ShlAssign<T> for i58 where
    i64: ShlAssign<T>, 
[src]

impl<T> Shr<T> for i58 where
    i64: Shr<T, Output = i64>, 
[src]

type Output = i58

The resulting type after applying the >> operator.

impl<T> ShrAssign<T> for i58 where
    i64: ShrAssign<T>, 
[src]

impl Sub<i58> for i58[src]

type Output = i58

The resulting type after applying the - operator.

impl UpperHex for i58[src]

Auto Trait Implementations

impl Send for i58[src]

impl Sync for i58[src]

impl Unpin for i58[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.