[][src]Struct core_ux::u23

pub struct u23(_);

The 23-bit unsigned integer type.

Implementations

impl u23[src]

pub const MAX: Self[src]

pub const MIN: Self[src]

impl u23[src]

pub fn min_value() -> u23[src]

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

pub fn max_value() -> u23[src]

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

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

type Output = u23

The resulting type after applying the + operator.

impl Binary for u23[src]

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

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

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAnd<u23> for u23[src]

type Output = u23

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAndAssign<u23> for u23[src]

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

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

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOr<u23> for u23[src]

type Output = u23

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOrAssign<u23> for u23[src]

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

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

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXor<u23> for u23[src]

type Output = u23

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXorAssign<u23> for u23[src]

impl Clone for u23[src]

impl Copy for u23[src]

impl Debug for u23[src]

impl Default for u23[src]

impl Display for u23[src]

impl Eq for u23[src]

impl From<u10> for u23[src]

impl From<u11> for u23[src]

impl From<u12> for u23[src]

impl From<u13> for u23[src]

impl From<u14> for u23[src]

impl From<u15> for u23[src]

impl From<u16> for u23[src]

impl From<u17> for u23[src]

impl From<u18> for u23[src]

impl From<u19> for u23[src]

impl From<u2> for u23[src]

impl From<u20> for u23[src]

impl From<u21> for u23[src]

impl From<u22> for u23[src]

impl From<u23> for u32[src]

impl From<u23> for u64[src]

impl From<u23> for u33[src]

impl From<u23> for u34[src]

impl From<u23> for u35[src]

impl From<u23> for u36[src]

impl From<u23> for u37[src]

impl From<u23> for u38[src]

impl From<u23> for u39[src]

impl From<u23> for u40[src]

impl From<u23> for u41[src]

impl From<u23> for u42[src]

impl From<u23> for u24[src]

impl From<u23> for u43[src]

impl From<u23> for u44[src]

impl From<u23> for u45[src]

impl From<u23> for u46[src]

impl From<u23> for u47[src]

impl From<u23> for u48[src]

impl From<u23> for u49[src]

impl From<u23> for u50[src]

impl From<u23> for u51[src]

impl From<u23> for u52[src]

impl From<u23> for u25[src]

impl From<u23> for u53[src]

impl From<u23> for u54[src]

impl From<u23> for u55[src]

impl From<u23> for u56[src]

impl From<u23> for u57[src]

impl From<u23> for u58[src]

impl From<u23> for u59[src]

impl From<u23> for u60[src]

impl From<u23> for u61[src]

impl From<u23> for u62[src]

impl From<u23> for u26[src]

impl From<u23> for u63[src]

impl From<u23> for u27[src]

impl From<u23> for u28[src]

impl From<u23> for u29[src]

impl From<u23> for u30[src]

impl From<u23> for u31[src]

impl From<u3> for u23[src]

impl From<u4> for u23[src]

impl From<u5> for u23[src]

impl From<u6> for u23[src]

impl From<u7> for u23[src]

impl From<u8> for u23[src]

impl From<u9> for u23[src]

impl Hash for u23[src]

impl LowerHex for u23[src]

impl Not for u23[src]

type Output = u23

The resulting type after applying the ! operator.

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

type Output = <u23 as Not>::Output

The resulting type after applying the ! operator.

impl Octal for u23[src]

impl Ord for u23[src]

impl PartialEq<u23> for u23[src]

impl PartialOrd<u23> for u23[src]

impl<T> Shl<T> for u23 where
    u32: Shl<T, Output = u32>, 
[src]

type Output = u23

The resulting type after applying the << operator.

impl<T> ShlAssign<T> for u23 where
    u32: ShlAssign<T>, 
[src]

impl<T> Shr<T> for u23 where
    u32: Shr<T, Output = u32>, 
[src]

type Output = u23

The resulting type after applying the >> operator.

impl<T> ShrAssign<T> for u23 where
    u32: ShrAssign<T>, 
[src]

impl Sub<u23> for u23[src]

type Output = u23

The resulting type after applying the - operator.

impl UpperHex for u23[src]

Auto Trait Implementations

impl Send for u23[src]

impl Sync for u23[src]

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