Struct fixed::FixedI8[][src]

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

An eight-bit fixed-point signed 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::FixedI8;
fn main() {
    let eleven: FixedI8<typenum::U3> = FixedI8::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> FixedI8<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.

Checked absolute value.

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.

Wrapping absolute value.

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.

Overflowing absolute value.

Returns the absolute value of two ≥ self.

Returns a number representing the sign of self.

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

Creates an integer of type i8 that has a bitwise representation identical to the FixedI8 value.

Converts the fixed-point number to f32.

Converts the fixed-point number to f64.

Trait Implementations

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

Formats the value using the given formatter. Read more

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

Formats the value using the given formatter. Read more

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

Formats the value using the given formatter.

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

Formats the value using the given formatter.

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

Formats the value using the given formatter.

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

Formats the value using the given formatter.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

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

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

impl<Frac: Unsigned> PartialEq<FixedI8<Frac>> for FixedI8<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 FixedI8<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<FixedI8<Frac>> for FixedI8<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 FixedI8<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> Neg for FixedI8<Frac>
[src]

The resulting type after applying the - operator.

Performs the unary - operation.

impl<'a, Frac: Unsigned> Neg for &'a FixedI8<Frac>
[src]

The resulting type after applying the - operator.

Performs the unary - operation.

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

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

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

The resulting type after applying the + operator.

Performs the + operation.

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

Performs the += operation.

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

Performs the += operation.

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

The resulting type after applying the - operator.

Performs the - operation.

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

The resulting type after applying the - operator.

Performs the - operation.

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

The resulting type after applying the - operator.

Performs the - operation.

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

The resulting type after applying the - operator.

Performs the - operation.

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

Performs the -= operation.

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

Performs the -= operation.

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

The resulting type after applying the * operator.

Performs the * operation.

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

The resulting type after applying the * operator.

Performs the * operation.

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

The resulting type after applying the * operator.

Performs the * operation.

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

The resulting type after applying the * operator.

Performs the * operation.

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

Performs the *= operation.

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

Performs the *= operation.

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

The resulting type after applying the / operator.

Performs the / operation.

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

The resulting type after applying the / operator.

Performs the / operation.

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

The resulting type after applying the / operator.

Performs the / operation.

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

The resulting type after applying the / operator.

Performs the / operation.

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

Performs the /= operation.

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

Performs the /= operation.

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

The resulting type after applying the ! operator.

Performs the unary ! operation.

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

The resulting type after applying the ! operator.

Performs the unary ! operation.

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

The resulting type after applying the & operator.

Performs the & operation.

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

The resulting type after applying the & operator.

Performs the & operation.

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

The resulting type after applying the & operator.

Performs the & operation.

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

The resulting type after applying the & operator.

Performs the & operation.

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

Performs the &= operation.

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

Performs the &= operation.

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

The resulting type after applying the | operator.

Performs the | operation.

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

The resulting type after applying the | operator.

Performs the | operation.

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

The resulting type after applying the | operator.

Performs the | operation.

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

The resulting type after applying the | operator.

Performs the | operation.

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

Performs the |= operation.

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

Performs the |= operation.

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

The resulting type after applying the ^ operator.

Performs the ^ operation.

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

The resulting type after applying the ^ operator.

Performs the ^ operation.

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

The resulting type after applying the ^ operator.

Performs the ^ operation.

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

The resulting type after applying the ^ operator.

Performs the ^ operation.

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

Performs the ^= operation.

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

Performs the ^= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

The resulting type after applying the << operator.

Performs the << operation.

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

Performs the <<= operation.

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

Performs the <<= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

The resulting type after applying the >> operator.

Performs the >> operation.

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

Performs the >>= operation.

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

Performs the >>= operation.

impl<Frac: Unsigned> Sum<FixedI8<Frac>> for FixedI8<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 FixedI8<Frac>> for FixedI8<Frac>
[src]

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

impl<Frac: Unsigned> Product<FixedI8<Frac>> for FixedI8<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 FixedI8<Frac>> for FixedI8<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 FixedI8<Frac> where
    Frac: Send

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