[][src]Struct ux_serde::i2

pub struct i2(_);

The 2-bit signed integer type.

Implementations

impl i2[src]

The 2-bit signed integer type.

pub const MAX: Self[src]

pub const MIN: Self[src]

impl i2[src]

pub fn min_value() -> i2[src]

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

pub fn max_value() -> i2[src]

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

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

type Output = i2

The resulting type after applying the + operator.

impl Binary for i2[src]

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

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

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAnd<i2> for i2[src]

type Output = i2

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAndAssign<i2> for i2[src]

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

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

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOr<i2> for i2[src]

type Output = i2

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOrAssign<i2> for i2[src]

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

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

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXor<i2> for i2[src]

type Output = i2

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXorAssign<i2> for i2[src]

impl Clone for i2[src]

impl Copy for i2[src]

impl Debug for i2[src]

impl Default for i2[src]

impl Display for i2[src]

impl Eq for i2[src]

impl From<i2> for i8[src]

impl From<i2> for i16[src]

impl From<i2> for i10[src]

impl From<i2> for i11[src]

impl From<i2> for i12[src]

impl From<i2> for i13[src]

impl From<i2> for i14[src]

impl From<i2> for i15[src]

impl From<i2> for i17[src]

impl From<i2> for i18[src]

impl From<i2> for i19[src]

impl From<i2> for i20[src]

impl From<i2> for i32[src]

impl From<i2> for i21[src]

impl From<i2> for i22[src]

impl From<i2> for i23[src]

impl From<i2> for i24[src]

impl From<i2> for i25[src]

impl From<i2> for i26[src]

impl From<i2> for i27[src]

impl From<i2> for i28[src]

impl From<i2> for i29[src]

impl From<i2> for i30[src]

impl From<i2> for i64[src]

impl From<i2> for i31[src]

impl From<i2> for i33[src]

impl From<i2> for i34[src]

impl From<i2> for i35[src]

impl From<i2> for i36[src]

impl From<i2> for i37[src]

impl From<i2> for i38[src]

impl From<i2> for i39[src]

impl From<i2> for i40[src]

impl From<i2> for i41[src]

impl From<i2> for i3[src]

impl From<i2> for i42[src]

impl From<i2> for i43[src]

impl From<i2> for i44[src]

impl From<i2> for i45[src]

impl From<i2> for i46[src]

impl From<i2> for i47[src]

impl From<i2> for i48[src]

impl From<i2> for i49[src]

impl From<i2> for i50[src]

impl From<i2> for i51[src]

impl From<i2> for i4[src]

impl From<i2> for i52[src]

impl From<i2> for i53[src]

impl From<i2> for i54[src]

impl From<i2> for i55[src]

impl From<i2> for i56[src]

impl From<i2> for i57[src]

impl From<i2> for i58[src]

impl From<i2> for i59[src]

impl From<i2> for i60[src]

impl From<i2> for i61[src]

impl From<i2> for i5[src]

impl From<i2> for i62[src]

impl From<i2> for i63[src]

impl From<i2> for i6[src]

impl From<i2> for i7[src]

impl From<i2> for i9[src]

impl Hash for i2[src]

impl LowerHex for i2[src]

impl Not for i2[src]

type Output = i2

The resulting type after applying the ! operator.

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

type Output = <i2 as Not>::Output

The resulting type after applying the ! operator.

impl Octal for i2[src]

impl Ord for i2[src]

impl PartialEq<i2> for i2[src]

impl PartialOrd<i2> for i2[src]

impl<T> Shl<T> for i2 where
    i8: Shl<T, Output = i8>, 
[src]

type Output = i2

The resulting type after applying the << operator.

impl<T> ShlAssign<T> for i2 where
    i8: ShlAssign<T>, 
[src]

impl<T> Shr<T> for i2 where
    i8: Shr<T, Output = i8>, 
[src]

type Output = i2

The resulting type after applying the >> operator.

impl<T> ShrAssign<T> for i2 where
    i8: ShrAssign<T>, 
[src]

impl Sub<i2> for i2[src]

type Output = i2

The resulting type after applying the - operator.

impl UpperHex for i2[src]

Auto Trait Implementations

impl RefUnwindSafe for i2[src]

impl Send for i2[src]

impl Sync for i2[src]

impl Unpin for i2[src]

impl UnwindSafe for i2[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> 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.