Struct fixed::FixedU64[][src]

#[repr(transparent)]
pub struct FixedU64<Frac: Unsigned>(_);

A 64-bit fixed-point unsigned integer with Frac fractional bits.

Currently Frac is an Unsigned as provided by the typenum crate; it is planned to move to const generics when they are implemented by the Rust compiler.

Examples

extern crate fixed;
extern crate typenum;
use fixed::FixedU64;
fn main() {
    let eleven: FixedU64<typenum::U3> = FixedU64::from_bits(11 << 3);
    let five_five = eleven >> 1u32;
    assert_eq!(eleven.to_string(), "11.0");
    assert_eq!(five_five.to_string(), "5.5");
}

Methods

impl<Frac: Unsigned> FixedU64<Frac>
[src]

Returns the smallest value that can be represented.

Returns the largest value that can be represented.

Returns the number of ones in the binary representation.

Returns the number of zeros in the binary representation.

Returns the number of leading zeros in the binary representation.

Returns the number of trailing zeros in the binary representation.

Shifts to the left by n bits, wrapping the truncated bits to the right end.

Shifts to the right by n bits, wrapping the truncated bits to the left end.

Checked negation.

Checked fixed-point addition.

Checked fixed-point subtraction.

Checked fixed-point multiplication.

Checked fixed-point division.

Checked fixed-point left shift.

Checked fixed-point right shift.

Saturating fixed-point addition.

Saturating fixed-point subtraction.

Saturating fixed-point multiplication.

Saturating fixed-point division.

Wrapping negation.

Wrapping fixed-point addition.

Wrapping fixed-point subtraction.

Wrapping fixed-point multiplication.

Wrapping fixed-point division.

Wrapping fixed-point left shift.

Wrapping fixed-point right shift.

Overflowing negation.

Overflowing fixed-point addition.

Overflowing fixed-point subtraction.

Overflowing fixed-point multiplication.

Overflowing fixed-point division.

Overflowing fixed-point left shift.

Overflowing fixed-point right shift.

Returns true if the fixed-point number is 2k for some k.

Returns the smallest power of two ≥ self.

Returns the smallest power of two ≥ self, or None if the next power of two is too large to represent.

Creates a fixed-point number of type FixedU64 that has a bitwise representation identical to the u64 value.

Creates an integer of type u64 that has a bitwise representation identical to the FixedU64 value.

Converts the fixed-point number to f32.

Converts the fixed-point number to f64.

Trait Implementations

impl<Frac: Unsigned> Display for FixedU64<Frac>
[src]

Formats the value using the given formatter. Read more

impl<Frac: Unsigned> Debug for FixedU64<Frac>
[src]

Formats the value using the given formatter. Read more

impl<Frac: Unsigned> Binary for FixedU64<Frac>
[src]

Formats the value using the given formatter.

impl<Frac: Unsigned> Octal for FixedU64<Frac>
[src]

Formats the value using the given formatter.

impl<Frac: Unsigned> LowerHex for FixedU64<Frac>
[src]

Formats the value using the given formatter.

impl<Frac: Unsigned> UpperHex for FixedU64<Frac>
[src]

Formats the value using the given formatter.

impl<Frac: Unsigned> Clone for FixedU64<Frac>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Frac: Unsigned> Copy for FixedU64<Frac>
[src]

impl<Frac: Unsigned> Default for FixedU64<Frac>
[src]

Returns the "default value" for a type. Read more

impl<Frac: Unsigned> Eq for FixedU64<Frac>
[src]

impl<Frac: Unsigned> PartialEq<FixedU64<Frac>> for FixedU64<Frac>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<Frac: Unsigned> Ord for FixedU64<Frac>
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<Frac: Unsigned> PartialOrd<FixedU64<Frac>> for FixedU64<Frac>
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<Frac: Unsigned> Hash for FixedU64<Frac>
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<Frac: Unsigned> Add<FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, Frac: Unsigned> Add<FixedU64<Frac>> for &'a FixedU64<Frac>
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, Frac: Unsigned> Add<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, 'b, Frac: Unsigned> Add<&'a FixedU64<Frac>> for &'b FixedU64<Frac>
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<Frac: Unsigned> AddAssign<FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the += operation.

impl<'a, Frac: Unsigned> AddAssign<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the += operation.

impl<Frac: Unsigned> Sub<FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, Frac: Unsigned> Sub<FixedU64<Frac>> for &'a FixedU64<Frac>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, Frac: Unsigned> Sub<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b, Frac: Unsigned> Sub<&'a FixedU64<Frac>> for &'b FixedU64<Frac>
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<Frac: Unsigned> SubAssign<FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the -= operation.

impl<'a, Frac: Unsigned> SubAssign<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the -= operation.

impl<Frac: Unsigned> Mul<FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, Frac: Unsigned> Mul<FixedU64<Frac>> for &'a FixedU64<Frac>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, Frac: Unsigned> Mul<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b, Frac: Unsigned> Mul<&'a FixedU64<Frac>> for &'b FixedU64<Frac>
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<Frac: Unsigned> MulAssign<FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the *= operation.

impl<'a, Frac: Unsigned> MulAssign<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the *= operation.

impl<Frac: Unsigned> Div<FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, Frac: Unsigned> Div<FixedU64<Frac>> for &'a FixedU64<Frac>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, Frac: Unsigned> Div<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b, Frac: Unsigned> Div<&'a FixedU64<Frac>> for &'b FixedU64<Frac>
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<Frac: Unsigned> DivAssign<FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the /= operation.

impl<'a, Frac: Unsigned> DivAssign<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the /= operation.

impl<Frac: Unsigned> Not for FixedU64<Frac>
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl<'a, Frac: Unsigned> Not for &'a FixedU64<Frac>
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl<Frac: Unsigned> BitAnd<FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<'a, Frac: Unsigned> BitAnd<FixedU64<Frac>> for &'a FixedU64<Frac>
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<'a, Frac: Unsigned> BitAnd<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<'a, 'b, Frac: Unsigned> BitAnd<&'a FixedU64<Frac>> for &'b FixedU64<Frac>
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<Frac: Unsigned> BitAndAssign<FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the &= operation.

impl<'a, Frac: Unsigned> BitAndAssign<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the &= operation.

impl<Frac: Unsigned> BitOr<FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<'a, Frac: Unsigned> BitOr<FixedU64<Frac>> for &'a FixedU64<Frac>
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<'a, Frac: Unsigned> BitOr<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<'a, 'b, Frac: Unsigned> BitOr<&'a FixedU64<Frac>> for &'b FixedU64<Frac>
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<Frac: Unsigned> BitOrAssign<FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the |= operation.

impl<'a, Frac: Unsigned> BitOrAssign<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the |= operation.

impl<Frac: Unsigned> BitXor<FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<'a, Frac: Unsigned> BitXor<FixedU64<Frac>> for &'a FixedU64<Frac>
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<'a, Frac: Unsigned> BitXor<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<'a, 'b, Frac: Unsigned> BitXor<&'a FixedU64<Frac>> for &'b FixedU64<Frac>
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<Frac: Unsigned> BitXorAssign<FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the ^= operation.

impl<'a, Frac: Unsigned> BitXorAssign<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

Performs the ^= operation.

impl<Frac: Unsigned> Shl<i8> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<i8> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a i8> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a i8> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<i8> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a i8> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<i16> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<i16> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a i16> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a i16> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<i16> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a i16> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<i32> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<i32> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a i32> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a i32> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<i32> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a i32> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<i64> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<i64> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a i64> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a i64> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<i64> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a i64> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<i128> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<i128> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a i128> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a i128> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<i128> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a i128> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<isize> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<isize> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a isize> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a isize> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<isize> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a isize> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<u8> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<u8> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a u8> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a u8> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<u8> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a u8> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<u16> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<u16> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a u16> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a u16> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<u16> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a u16> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<u32> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<u32> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a u32> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a u32> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<u32> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a u32> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<u64> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<u64> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a u64> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a u64> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<u64> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a u64> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<u128> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<u128> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a u128> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a u128> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<u128> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a u128> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shl<usize> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<usize> for &'a FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac: Unsigned> Shl<&'a usize> for FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac: Unsigned> Shl<&'a usize> for &'b FixedU64<Frac>
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac: Unsigned> ShlAssign<usize> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<'a, Frac: Unsigned> ShlAssign<&'a usize> for FixedU64<Frac>
[src]

Performs the <<= operation.

impl<Frac: Unsigned> Shr<i8> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<i8> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a i8> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a i8> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<i8> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a i8> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<i16> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<i16> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a i16> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a i16> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<i16> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a i16> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<i32> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<i32> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a i32> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a i32> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<i32> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a i32> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<i64> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<i64> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a i64> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a i64> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<i64> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a i64> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<i128> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<i128> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a i128> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a i128> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<i128> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a i128> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<isize> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<isize> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a isize> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a isize> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<isize> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a isize> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<u8> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<u8> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a u8> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a u8> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<u8> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a u8> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<u16> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<u16> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a u16> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a u16> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<u16> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a u16> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<u32> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<u32> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a u32> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a u32> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<u32> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a u32> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<u64> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<u64> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a u64> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a u64> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<u64> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a u64> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<u128> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<u128> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a u128> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a u128> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<u128> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a u128> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Shr<usize> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<usize> for &'a FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac: Unsigned> Shr<&'a usize> for FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac: Unsigned> Shr<&'a usize> for &'b FixedU64<Frac>
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac: Unsigned> ShrAssign<usize> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<'a, Frac: Unsigned> ShrAssign<&'a usize> for FixedU64<Frac>
[src]

Performs the >>= operation.

impl<Frac: Unsigned> Sum<FixedU64<Frac>> for FixedU64<Frac>
[src]

Method which takes an iterator and generates Self from the elements by "summing up" the items. Read more

impl<'a, Frac: Unsigned + 'a> Sum<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

Method which takes an iterator and generates Self from the elements by "summing up" the items. Read more

impl<Frac: Unsigned> Product<FixedU64<Frac>> for FixedU64<Frac>
[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

impl<'a, Frac: Unsigned + 'a> Product<&'a FixedU64<Frac>> for FixedU64<Frac>
[src]

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

Auto Trait Implementations

impl<Frac> Send for FixedU64<Frac> where
    Frac: Send

impl<Frac> Sync for FixedU64<Frac> where
    Frac: Sync