Struct ux::u13
[−]
[src]
pub struct u13(_);
The 13-bit unsigned integer type.
Methods
impl u13[src]
impl u13[src]
pub fn min_value() -> u13[src]
Returns the smallest value that can be represented by this integer type.
pub fn max_value() -> u13[src]
Returns the largest value that can be represented by this integer type.
pub fn new(value: u16) -> u13[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 From<u8> for u13[src]
impl From<u13> for u16[src]
impl From<u13> for u32[src]
impl From<u13> for u64[src]
impl From<u2> for u13[src]
impl From<u3> for u13[src]
impl From<u4> for u13[src]
impl From<u5> for u13[src]
impl From<u6> for u13[src]
impl From<u7> for u13[src]
impl From<u9> for u13[src]
impl From<u10> for u13[src]
impl From<u11> for u13[src]
impl From<u12> for u13[src]
impl From<u13> for u14[src]
impl From<u13> for u15[src]
impl From<u13> for u17[src]
impl From<u13> for u18[src]
impl From<u13> for u19[src]
impl From<u13> for u20[src]
impl From<u13> for u21[src]
impl From<u13> for u22[src]
impl From<u13> for u23[src]
impl From<u13> for u24[src]
impl From<u13> for u25[src]
impl From<u13> for u26[src]
impl From<u13> for u27[src]
impl From<u13> for u28[src]
impl From<u13> for u29[src]
impl From<u13> for u30[src]
impl From<u13> for u31[src]
impl From<u13> for u33[src]
impl From<u13> for u34[src]
impl From<u13> for u35[src]
impl From<u13> for u36[src]
impl From<u13> for u37[src]
impl From<u13> for u38[src]
impl From<u13> for u39[src]
impl From<u13> for u40[src]
impl From<u13> for u41[src]
impl From<u13> for u42[src]
impl From<u13> for u43[src]
impl From<u13> for u44[src]
impl From<u13> for u45[src]
impl From<u13> for u46[src]
impl From<u13> for u47[src]
impl From<u13> for u48[src]
impl From<u13> for u49[src]
impl From<u13> for u50[src]
impl From<u13> for u51[src]
impl From<u13> for u52[src]
impl From<u13> for u53[src]
impl From<u13> for u54[src]
impl From<u13> for u55[src]
impl From<u13> for u56[src]
impl From<u13> for u57[src]
impl From<u13> for u58[src]
impl From<u13> for u59[src]
impl From<u13> for u60[src]
impl From<u13> for u61[src]
impl From<u13> for u62[src]
impl From<u13> for u63[src]
impl Default for u13[src]
impl Clone for u13[src]
fn clone(&self) -> u13[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for u13[src]
impl Debug for u13[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for u13[src]
fn eq(&self, other: &Self) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Eq for u13[src]
impl PartialOrd for u13[src]
fn partial_cmp(&self, other: &u13) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for u13[src]
fn cmp(&self, other: &u13) -> Ordering[src]
This method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
impl Hash for u13[src]
fn hash<H: Hasher>(&self, h: &mut H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Display for u13[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
impl UpperHex for u13[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl LowerHex for u13[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl Octal for u13[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl Binary for u13[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl<T> Shr<T> for u13 where
u16: Shr<T, Output = u16>, [src]
u16: Shr<T, Output = u16>,
type Output = u13
The resulting type after applying the >> operator.
fn shr(self, rhs: T) -> u13[src]
Performs the >> operation.
impl<T> Shl<T> for u13 where
u16: Shl<T, Output = u16>, [src]
u16: Shl<T, Output = u16>,
type Output = u13
The resulting type after applying the << operator.
fn shl(self, rhs: T) -> u13[src]
Performs the << operation.
impl<T> ShrAssign<T> for u13 where
u16: ShrAssign<T>, [src]
u16: ShrAssign<T>,
fn shr_assign(&mut self, rhs: T)[src]
Performs the >>= operation.
impl<T> ShlAssign<T> for u13 where
u16: ShlAssign<T>, [src]
u16: ShlAssign<T>,
fn shl_assign(&mut self, rhs: T)[src]
Performs the <<= operation.
impl BitOr<u13> for u13[src]
type Output = u13
The resulting type after applying the | operator.
fn bitor(self, rhs: u13) -> Self::Output[src]
Performs the | operation.
impl<'a> BitOr<&'a u13> for u13[src]
type Output = <u13 as BitOr<u13>>::Output
The resulting type after applying the | operator.
fn bitor(self, rhs: &'a u13) -> Self::Output[src]
Performs the | operation.
impl<'a> BitOr<u13> for &'a u13[src]
type Output = <u13 as BitOr<u13>>::Output
The resulting type after applying the | operator.
fn bitor(self, rhs: u13) -> Self::Output[src]
Performs the | operation.
impl<'a> BitOr<&'a u13> for &'a u13[src]
type Output = <u13 as BitOr<u13>>::Output
The resulting type after applying the | operator.
fn bitor(self, rhs: &'a u13) -> Self::Output[src]
Performs the | operation.
impl BitOrAssign<u13> for u13[src]
fn bitor_assign(&mut self, other: u13)[src]
Performs the |= operation.
impl BitAnd<u13> for u13[src]
type Output = u13
The resulting type after applying the & operator.
fn bitand(self, rhs: u13) -> Self::Output[src]
Performs the & operation.
impl<'a> BitAnd<&'a u13> for u13[src]
type Output = <u13 as BitOr<u13>>::Output
The resulting type after applying the & operator.
fn bitand(self, rhs: &'a u13) -> Self::Output[src]
Performs the & operation.
impl<'a> BitAnd<u13> for &'a u13[src]
type Output = <u13 as BitOr<u13>>::Output
The resulting type after applying the & operator.
fn bitand(self, rhs: u13) -> Self::Output[src]
Performs the & operation.
impl<'a> BitAnd<&'a u13> for &'a u13[src]
type Output = <u13 as BitOr<u13>>::Output
The resulting type after applying the & operator.
fn bitand(self, rhs: &'a u13) -> Self::Output[src]
Performs the & operation.
impl BitAndAssign<u13> for u13[src]
fn bitand_assign(&mut self, other: u13)[src]
Performs the &= operation.
impl Add<u13> for u13[src]
type Output = u13
The resulting type after applying the + operator.
fn add(self, other: u13) -> u13[src]
Performs the + operation.