Struct ux::u57
[−]
[src]
pub struct u57(_);
The 57-bit unsigned integer type.
Methods
impl u57[src]
impl u57[src]
pub fn min_value() -> u57[src]
Returns the smallest value that can be represented by this integer type.
pub fn max_value() -> u57[src]
Returns the largest value that can be represented by this integer type.
pub fn new(value: u64) -> u57[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 u57[src]
impl From<u16> for u57[src]
impl From<u32> for u57[src]
impl From<u57> for u64[src]
impl From<u2> for u57[src]
impl From<u3> for u57[src]
impl From<u4> for u57[src]
impl From<u5> for u57[src]
impl From<u6> for u57[src]
impl From<u7> for u57[src]
impl From<u9> for u57[src]
impl From<u10> for u57[src]
impl From<u11> for u57[src]
impl From<u12> for u57[src]
impl From<u13> for u57[src]
impl From<u14> for u57[src]
impl From<u15> for u57[src]
impl From<u17> for u57[src]
impl From<u18> for u57[src]
impl From<u19> for u57[src]
impl From<u20> for u57[src]
impl From<u21> for u57[src]
impl From<u22> for u57[src]
impl From<u23> for u57[src]
impl From<u24> for u57[src]
impl From<u25> for u57[src]
impl From<u26> for u57[src]
impl From<u27> for u57[src]
impl From<u28> for u57[src]
impl From<u29> for u57[src]
impl From<u30> for u57[src]
impl From<u31> for u57[src]
impl From<u33> for u57[src]
impl From<u34> for u57[src]
impl From<u35> for u57[src]
impl From<u36> for u57[src]
impl From<u37> for u57[src]
impl From<u38> for u57[src]
impl From<u39> for u57[src]
impl From<u40> for u57[src]
impl From<u41> for u57[src]
impl From<u42> for u57[src]
impl From<u43> for u57[src]
impl From<u44> for u57[src]
impl From<u45> for u57[src]
impl From<u46> for u57[src]
impl From<u47> for u57[src]
impl From<u48> for u57[src]
impl From<u49> for u57[src]
impl From<u50> for u57[src]
impl From<u51> for u57[src]
impl From<u52> for u57[src]
impl From<u53> for u57[src]
impl From<u54> for u57[src]
impl From<u55> for u57[src]
impl From<u56> for u57[src]
impl From<u57> for u58[src]
impl From<u57> for u59[src]
impl From<u57> for u60[src]
impl From<u57> for u61[src]
impl From<u57> for u62[src]
impl From<u57> for u63[src]
impl Default for u57[src]
impl Clone for u57[src]
fn clone(&self) -> u57[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 u57[src]
impl Debug for u57[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for u57[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 u57[src]
impl PartialOrd for u57[src]
fn partial_cmp(&self, other: &u57) -> 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 u57[src]
fn cmp(&self, other: &u57) -> 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 u57[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 u57[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
impl UpperHex for u57[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl LowerHex for u57[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl Octal for u57[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl Binary for u57[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter.
impl<T> Shr<T> for u57 where
u64: Shr<T, Output = u64>, [src]
u64: Shr<T, Output = u64>,
type Output = u57
The resulting type after applying the >> operator.
fn shr(self, rhs: T) -> u57[src]
Performs the >> operation.
impl<T> Shl<T> for u57 where
u64: Shl<T, Output = u64>, [src]
u64: Shl<T, Output = u64>,
type Output = u57
The resulting type after applying the << operator.
fn shl(self, rhs: T) -> u57[src]
Performs the << operation.
impl<T> ShrAssign<T> for u57 where
u64: ShrAssign<T>, [src]
u64: ShrAssign<T>,
fn shr_assign(&mut self, rhs: T)[src]
Performs the >>= operation.
impl<T> ShlAssign<T> for u57 where
u64: ShlAssign<T>, [src]
u64: ShlAssign<T>,
fn shl_assign(&mut self, rhs: T)[src]
Performs the <<= operation.
impl BitOr<u57> for u57[src]
type Output = u57
The resulting type after applying the | operator.
fn bitor(self, rhs: u57) -> Self::Output[src]
Performs the | operation.
impl<'a> BitOr<&'a u57> for u57[src]
type Output = <u57 as BitOr<u57>>::Output
The resulting type after applying the | operator.
fn bitor(self, rhs: &'a u57) -> Self::Output[src]
Performs the | operation.
impl<'a> BitOr<u57> for &'a u57[src]
type Output = <u57 as BitOr<u57>>::Output
The resulting type after applying the | operator.
fn bitor(self, rhs: u57) -> Self::Output[src]
Performs the | operation.
impl<'a> BitOr<&'a u57> for &'a u57[src]
type Output = <u57 as BitOr<u57>>::Output
The resulting type after applying the | operator.
fn bitor(self, rhs: &'a u57) -> Self::Output[src]
Performs the | operation.
impl BitOrAssign<u57> for u57[src]
fn bitor_assign(&mut self, other: u57)[src]
Performs the |= operation.
impl BitXor<u57> for u57[src]
type Output = u57
The resulting type after applying the ^ operator.
fn bitxor(self, rhs: u57) -> Self::Output[src]
Performs the ^ operation.
impl<'a> BitXor<&'a u57> for u57[src]
type Output = <u57 as BitOr<u57>>::Output
The resulting type after applying the ^ operator.
fn bitxor(self, rhs: &'a u57) -> Self::Output[src]
Performs the ^ operation.
impl<'a> BitXor<u57> for &'a u57[src]
type Output = <u57 as BitOr<u57>>::Output
The resulting type after applying the ^ operator.
fn bitxor(self, rhs: u57) -> Self::Output[src]
Performs the ^ operation.
impl<'a> BitXor<&'a u57> for &'a u57[src]
type Output = <u57 as BitOr<u57>>::Output
The resulting type after applying the ^ operator.
fn bitxor(self, rhs: &'a u57) -> Self::Output[src]
Performs the ^ operation.
impl BitXorAssign<u57> for u57[src]
fn bitxor_assign(&mut self, other: u57)[src]
Performs the ^= operation.
impl Not for u57[src]
type Output = u57
The resulting type after applying the ! operator.
fn not(self) -> u57[src]
Performs the unary ! operation.
impl<'a> Not for &'a u57[src]
type Output = <u57 as Not>::Output
The resulting type after applying the ! operator.
fn not(self) -> u57[src]
Performs the unary ! operation.
impl BitAnd<u57> for u57[src]
type Output = u57
The resulting type after applying the & operator.
fn bitand(self, rhs: u57) -> Self::Output[src]
Performs the & operation.
impl<'a> BitAnd<&'a u57> for u57[src]
type Output = <u57 as BitOr<u57>>::Output
The resulting type after applying the & operator.
fn bitand(self, rhs: &'a u57) -> Self::Output[src]
Performs the & operation.
impl<'a> BitAnd<u57> for &'a u57[src]
type Output = <u57 as BitOr<u57>>::Output
The resulting type after applying the & operator.
fn bitand(self, rhs: u57) -> Self::Output[src]
Performs the & operation.
impl<'a> BitAnd<&'a u57> for &'a u57[src]
type Output = <u57 as BitOr<u57>>::Output
The resulting type after applying the & operator.
fn bitand(self, rhs: &'a u57) -> Self::Output[src]
Performs the & operation.
impl BitAndAssign<u57> for u57[src]
fn bitand_assign(&mut self, other: u57)[src]
Performs the &= operation.
impl Add<u57> for u57[src]
type Output = u57
The resulting type after applying the + operator.
fn add(self, other: u57) -> u57[src]
Performs the + operation.