Fast8

Struct Fast8 

Source
pub struct Fast8 { /* private fields */ }
Expand description

Arithmetic modulo 2^8 - 1 = 3 * 5 * 17.

This type does not have any inherent methods. Use the Mod trait to access its features.

See module-level documentation for more information.

Trait Implementations§

Source§

impl Add<&Fast8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the + operator.
Source§

fn add(self, other: &Fast8) -> Fast8

Performs the + operation. Read more
Source§

impl Add<&Fast8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the + operator.
Source§

fn add(self, other: &Fast8) -> Fast8

Performs the + operation. Read more
Source§

impl Add<Fast8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the + operator.
Source§

fn add(self, other: Fast8) -> Fast8

Performs the + operation. Read more
Source§

impl Add for Fast8

Source§

type Output = Fast8

The resulting type after applying the + operator.
Source§

fn add(self, other: Self) -> Self

Performs the + operation. Read more
Source§

impl AddAssign<&Fast8> for Fast8

Source§

fn add_assign(&mut self, other: &Fast8)

Performs the += operation. Read more
Source§

impl AddAssign for Fast8

Source§

fn add_assign(&mut self, other: Fast8)

Performs the += operation. Read more
Source§

impl Binary for Fast8

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Clone for Fast8

Source§

fn clone(&self) -> Fast8

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Fast8

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Fast8

Source§

fn default() -> Fast8

Returns the “default value” for a type. Read more
Source§

impl Display for Fast8

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Div<&Fast8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the / operator.
Source§

fn div(self, other: &Fast8) -> Fast8

Performs the / operation. Read more
Source§

impl Div<&Fast8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the / operator.
Source§

fn div(self, other: &Fast8) -> Fast8

Performs the / operation. Read more
Source§

impl Div<Fast8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the / operator.
Source§

fn div(self, other: Fast8) -> Fast8

Performs the / operation. Read more
Source§

impl Div for Fast8

Source§

type Output = Fast8

The resulting type after applying the / operator.
Source§

fn div(self, other: Self) -> Self

Performs the / operation. Read more
Source§

impl DivAssign<&Fast8> for Fast8

Source§

fn div_assign(&mut self, other: &Fast8)

Performs the /= operation. Read more
Source§

impl DivAssign for Fast8

Source§

fn div_assign(&mut self, other: Fast8)

Performs the /= operation. Read more
Source§

impl Hash for Fast8

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl LowerHex for Fast8

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Mod for Fast8

Source§

const MODULUS: u8 = 255u8

The value of the modulus, or 0 if it is a power of two. Read more
Source§

const ZERO: Self

A constant 0 value.
Source§

const ONE: Self

A constant 1 value.
Source§

type Native = u8

The underlying native type.
Source§

fn new(x: u8) -> Self

Create a value corresponding to x mod m.
Source§

unsafe fn new_unchecked(x: u8) -> Self

Create a value corresponding to x, assuming x is a correct representation for this type. Read more
Source§

fn remainder(self) -> u8

Get the normalized residue x mod m.
Source§

fn to_raw(self) -> u8

Get the internal optimized representation of the number. Read more
Source§

fn is<const C: u64>(self) -> bool

Compare for equality with a constant. Read more
Source§

fn is_zero(&self) -> bool

Compare for equality with zero. Read more
Source§

fn pow(self, n: u64) -> Self

Compute x^n mod m. Read more
Source§

fn is_invertible(&self) -> bool

Check if the value is invertible, i.e. if x is coprime with m. Read more
Source§

fn inverse(self) -> Option<Self>

Compute the multiplicative inverse. Read more
Source§

impl Mul<&Fast8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the * operator.
Source§

fn mul(self, other: &Fast8) -> Fast8

Performs the * operation. Read more
Source§

impl Mul<&Fast8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the * operator.
Source§

fn mul(self, other: &Fast8) -> Fast8

Performs the * operation. Read more
Source§

impl Mul<Fast8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the * operator.
Source§

fn mul(self, other: Fast8) -> Fast8

Performs the * operation. Read more
Source§

impl Mul for Fast8

Source§

type Output = Fast8

The resulting type after applying the * operator.
Source§

fn mul(self, other: Self) -> Self

Performs the * operation. Read more
Source§

impl MulAssign<&Fast8> for Fast8

Source§

fn mul_assign(&mut self, other: &Fast8)

Performs the *= operation. Read more
Source§

impl MulAssign for Fast8

Source§

fn mul_assign(&mut self, other: Fast8)

Performs the *= operation. Read more
Source§

impl Neg for &Fast8

Source§

type Output = Fast8

The resulting type after applying the - operator.
Source§

fn neg(self) -> Fast8

Performs the unary - operation. Read more
Source§

impl Neg for Fast8

Source§

type Output = Fast8

The resulting type after applying the - operator.
Source§

fn neg(self) -> Self

Performs the unary - operation. Read more
Source§

impl Octal for Fast8

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Fast8

Source§

fn eq(&self, other: &Fast8) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> Product<&'a Fast8> for Fast8

Source§

fn product<I: Iterator<Item = &'a Self>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product for Fast8

Source§

fn product<I: Iterator<Item = Self>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Shl<&i16> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &i16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&i16> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &i16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&i32> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &i32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&i32> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &i32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&i64> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &i64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&i64> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &i64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&i8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &i8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&i8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &i8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&isize> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &isize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&isize> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &isize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&u16> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &u16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&u16> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &u16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&u32> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &u32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&u32> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &u32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&u64> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &u64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&u64> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &u64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&u8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &u8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&u8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &u8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&usize> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &usize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<&usize> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: &usize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i16> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: i16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i16> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: i16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i32> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: i32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i32> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: i32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i64> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: i64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i64> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: i64) -> Self

Performs the << operation. Read more
Source§

impl Shl<i8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: i8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<i8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: i8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<isize> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: isize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<isize> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: isize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u16> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: u16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u16> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: u16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u32> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: u32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u32> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: u32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u64> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: u64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u64> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: u64) -> Self

Performs the << operation. Read more
Source§

impl Shl<u8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: u8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: u8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<usize> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: usize) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<usize> for Fast8

Source§

type Output = Fast8

The resulting type after applying the << operator.
Source§

fn shl(self, n: usize) -> Self::Output

Performs the << operation. Read more
Source§

impl ShlAssign<&i16> for Fast8

Source§

fn shl_assign(&mut self, n: &i16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<&i32> for Fast8

Source§

fn shl_assign(&mut self, n: &i32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<&i64> for Fast8

Source§

fn shl_assign(&mut self, n: &i64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<&i8> for Fast8

Source§

fn shl_assign(&mut self, n: &i8)

Performs the <<= operation. Read more
Source§

impl ShlAssign<&isize> for Fast8

Source§

fn shl_assign(&mut self, n: &isize)

Performs the <<= operation. Read more
Source§

impl ShlAssign<&u16> for Fast8

Source§

fn shl_assign(&mut self, n: &u16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<&u32> for Fast8

Source§

fn shl_assign(&mut self, n: &u32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<&u64> for Fast8

Source§

fn shl_assign(&mut self, n: &u64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<&u8> for Fast8

Source§

fn shl_assign(&mut self, n: &u8)

Performs the <<= operation. Read more
Source§

impl ShlAssign<&usize> for Fast8

Source§

fn shl_assign(&mut self, n: &usize)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i16> for Fast8

Source§

fn shl_assign(&mut self, n: i16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i32> for Fast8

Source§

fn shl_assign(&mut self, n: i32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i64> for Fast8

Source§

fn shl_assign(&mut self, n: i64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<i8> for Fast8

Source§

fn shl_assign(&mut self, n: i8)

Performs the <<= operation. Read more
Source§

impl ShlAssign<isize> for Fast8

Source§

fn shl_assign(&mut self, n: isize)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u16> for Fast8

Source§

fn shl_assign(&mut self, n: u16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u32> for Fast8

Source§

fn shl_assign(&mut self, n: u32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u64> for Fast8

Source§

fn shl_assign(&mut self, n: u64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u8> for Fast8

Source§

fn shl_assign(&mut self, n: u8)

Performs the <<= operation. Read more
Source§

impl ShlAssign<usize> for Fast8

Source§

fn shl_assign(&mut self, n: usize)

Performs the <<= operation. Read more
Source§

impl Shr<&i16> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &i16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&i16> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &i16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&i32> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &i32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&i32> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &i32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&i64> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &i64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&i64> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &i64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&i8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &i8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&i8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &i8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&isize> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &isize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&isize> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &isize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&u16> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &u16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&u16> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &u16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&u32> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &u32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&u32> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &u32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&u64> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &u64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&u64> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &u64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&u8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &u8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&u8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &u8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&usize> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &usize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<&usize> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: &usize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i16> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: i16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i16> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: i16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i32> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: i32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i32> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: i32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i64> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: i64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i64> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: i64) -> Self

Performs the >> operation. Read more
Source§

impl Shr<i8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: i8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<i8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: i8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<isize> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: isize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<isize> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: isize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u16> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: u16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u16> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: u16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u32> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: u32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u32> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: u32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u64> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: u64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u64> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: u64) -> Self

Performs the >> operation. Read more
Source§

impl Shr<u8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: u8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: u8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<usize> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: usize) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<usize> for Fast8

Source§

type Output = Fast8

The resulting type after applying the >> operator.
Source§

fn shr(self, n: usize) -> Self::Output

Performs the >> operation. Read more
Source§

impl ShrAssign<&i16> for Fast8

Source§

fn shr_assign(&mut self, n: &i16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<&i32> for Fast8

Source§

fn shr_assign(&mut self, n: &i32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<&i64> for Fast8

Source§

fn shr_assign(&mut self, n: &i64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<&i8> for Fast8

Source§

fn shr_assign(&mut self, n: &i8)

Performs the >>= operation. Read more
Source§

impl ShrAssign<&isize> for Fast8

Source§

fn shr_assign(&mut self, n: &isize)

Performs the >>= operation. Read more
Source§

impl ShrAssign<&u16> for Fast8

Source§

fn shr_assign(&mut self, n: &u16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<&u32> for Fast8

Source§

fn shr_assign(&mut self, n: &u32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<&u64> for Fast8

Source§

fn shr_assign(&mut self, n: &u64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<&u8> for Fast8

Source§

fn shr_assign(&mut self, n: &u8)

Performs the >>= operation. Read more
Source§

impl ShrAssign<&usize> for Fast8

Source§

fn shr_assign(&mut self, n: &usize)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i16> for Fast8

Source§

fn shr_assign(&mut self, n: i16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i32> for Fast8

Source§

fn shr_assign(&mut self, n: i32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i64> for Fast8

Source§

fn shr_assign(&mut self, n: i64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<i8> for Fast8

Source§

fn shr_assign(&mut self, n: i8)

Performs the >>= operation. Read more
Source§

impl ShrAssign<isize> for Fast8

Source§

fn shr_assign(&mut self, n: isize)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u16> for Fast8

Source§

fn shr_assign(&mut self, n: u16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u32> for Fast8

Source§

fn shr_assign(&mut self, n: u32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u64> for Fast8

Source§

fn shr_assign(&mut self, n: u64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u8> for Fast8

Source§

fn shr_assign(&mut self, n: u8)

Performs the >>= operation. Read more
Source§

impl ShrAssign<usize> for Fast8

Source§

fn shr_assign(&mut self, n: usize)

Performs the >>= operation. Read more
Source§

impl Sub<&Fast8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the - operator.
Source§

fn sub(self, other: &Fast8) -> Fast8

Performs the - operation. Read more
Source§

impl Sub<&Fast8> for Fast8

Source§

type Output = Fast8

The resulting type after applying the - operator.
Source§

fn sub(self, other: &Fast8) -> Fast8

Performs the - operation. Read more
Source§

impl Sub<Fast8> for &Fast8

Source§

type Output = Fast8

The resulting type after applying the - operator.
Source§

fn sub(self, other: Fast8) -> Fast8

Performs the - operation. Read more
Source§

impl Sub for Fast8

Source§

type Output = Fast8

The resulting type after applying the - operator.
Source§

fn sub(self, other: Self) -> Self

Performs the - operation. Read more
Source§

impl SubAssign<&Fast8> for Fast8

Source§

fn sub_assign(&mut self, other: &Fast8)

Performs the -= operation. Read more
Source§

impl SubAssign for Fast8

Source§

fn sub_assign(&mut self, other: Fast8)

Performs the -= operation. Read more
Source§

impl<'a> Sum<&'a Fast8> for Fast8

Source§

fn sum<I: Iterator<Item = &'a Self>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum for Fast8

Source§

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl UpperHex for Fast8

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for Fast8

Source§

impl Eq for Fast8

Auto Trait Implementations§

§

impl Freeze for Fast8

§

impl RefUnwindSafe for Fast8

§

impl Send for Fast8

§

impl Sync for Fast8

§

impl Unpin for Fast8

§

impl UnwindSafe for Fast8

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.