Struct fixed::FixedU8[][src]

#[repr(transparent)]
pub struct FixedU8<Frac>(_)
where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>
;

An eight-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

use fixed::frac::U3;
use fixed::FixedU8;
let eleven = FixedU8::<U3>::from_bits(11 << 3);
let five_half = eleven >> 1u32;
assert_eq!(eleven.to_string(), "11.0");
assert_eq!(five_half.to_string(), "5.5");

Methods

impl<Frac> FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Returns the smallest value that can be represented.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
assert_eq!(Fix::min_value(), Fix::from_bits(0));

Returns the smallest value that can be represented.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
assert_eq!(Fix::max_value(), Fix::from_bits(u8::max_value()));

Returns the number of integer bits.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U6>;
assert_eq!(Fix::int_bits(), 8 - 6);

Returns the number of fractional bits.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U6>;
assert_eq!(Fix::frac_bits(), 6);

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

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 0010.0000 == 2
assert_eq!(Fix::from_bits(0b10_0000), 2);

Creates an integer of type u8 that has a bitwise representation identical to the FixedU8 value.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let two = Fix::from_int(2).unwrap();
// two is 0010.0000
assert_eq!(two.to_bits(), 0b10_0000);

Creates a fixed-point number of type FixedU8 that has the same value as an integer of type u8 if it fits.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let fix_one = Fix::from_bits(1 << 4);
assert_eq!(Fix::from_int(1), Some(fix_one));
let too_large = 1 << (8 - 2);
assert_eq!(Fix::from_int(too_large), None);

Converts the fixed-point number of type FixedU8 to an integer of type u8 truncating the fractional bits.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let two_half = Fix::from_int(5).unwrap() / 2;
assert_eq!(two_half.to_int(), 2);

Converts the fixed-point number of type FixedU8 to an integer of type u8 rounding towards +∞.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let two_half = Fix::from_int(5).unwrap() / 2;
assert_eq!(two_half.to_int_ceil(), 3);

Converts the fixed-point number of type FixedU8 to an integer of type u8 rounding towards −∞.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let two_half = Fix::from_int(5).unwrap() / 2;
assert_eq!(two_half.to_int_floor(), 2);

Converts the fixed-point number of type FixedU8 to an integer of type u8 rounding towards −∞.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let two_half = Fix::from_int(5).unwrap() / 2;
assert_eq!(two_half.to_int_round(), 3);
let one_quarter = two_half / 2;
assert_eq!(one_quarter.to_int_round(), 1);

Creates a fixed-point number from f32.

This method rounds to the nearest, with ties rounding to even.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 1.75 is 0001.1100, that is from_bits(28)
assert_eq!(Fix::from_f32(1.75), Some(Fix::from_bits(28)));
// 1e-10 is too small for four fractional bits
assert_eq!(Fix::from_f32(1e-10), Some(Fix::from_bits(0)));
// 2e38 is too large for FixedU8<frac::U4>
assert!(Fix::from_f32(2e38).is_none());

Creates a fixed-point number from f64.

This method rounds to the nearest, with ties rounding to even.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 1.75 is 0001.1100, that is from_bits(28)
assert_eq!(Fix::from_f64(1.75), Some(Fix::from_bits(28)));
// 1e-10 is too small for four fractional bits
assert_eq!(Fix::from_f64(1e-10), Some(Fix::from_bits(0)));
// 2e38 is too large for FixedU8<frac::U4>
assert!(Fix::from_f64(2e38).is_none());

Converts the fixed-point number to f32.

This method rounds to the nearest, with ties rounding to even.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 1.75 is 0001.1100, that is from_bits(28)
assert_eq!(Fix::from_bits(28).to_f32(), 1.75);

Converts the fixed-point number to f64.

This method rounds to the nearest, with ties rounding to even.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 1.75 is 0001.1100, that is from_bits(28)
assert_eq!(Fix::from_bits(28).to_f64(), 1.75);

Returns the integer part.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 0010.0000
let two = Fix::from_int(2).unwrap();
// 0010.0100
let two_and_quarter = two + two / 8;
assert_eq!(two_and_quarter.int(), two);

Returns the fractional part.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 0000.0100
let quarter = Fix::from_int(1).unwrap() / 4;
// 0010.0100
let two_and_quarter = quarter * 9;
assert_eq!(two_and_quarter.frac(), quarter);

Returns the number of ones in the binary representation.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let f = Fix::from_bits(0b11_0010);
assert_eq!(f.count_ones(), 3);

Returns the number of zeros in the binary representation.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let f = Fix::from_bits(!0b11_0010);
assert_eq!(f.count_zeros(), 3);

Returns the number of leading zeros in the binary representation.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let f = Fix::from_bits(0b10_0000);
assert_eq!(f.leading_zeros(), 8 - 6);

Returns the number of trailing zeros in the binary representation.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let f = Fix::from_bits(0b10_0000);
assert_eq!(f.trailing_zeros(), 5);

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

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let bits: u8 = (0b111 << (8 - 3)) | 0b1010;
let rot = 0b1010111;
assert_eq!(bits.rotate_left(3), rot);
assert_eq!(Fix::from_bits(bits).rotate_left(3), Fix::from_bits(rot));

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

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
let bits: u8 = 0b1010111;
let rot = (0b111 << (8 - 3)) | 0b1010;
assert_eq!(bits.rotate_right(3), rot);
assert_eq!(Fix::from_bits(bits).rotate_right(3), Fix::from_bits(rot));

Checked negation.

Checked fixed-point addition.

Checked fixed-point subtraction.

Checked fixed-point multiplication.

Checked fixed-point division.

Checked fixed-point multiplication by integer.

Checked fixed-point division by integer.

Checked fixed-point remainder for division by integer.

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.

Saturating fixed-point multiplication by integer.

Wrapping negation.

Wrapping fixed-point addition.

Wrapping fixed-point subtraction.

Wrapping fixed-point multiplication.

Wrapping fixed-point division.

Wrapping fixed-point multiplication by integer.

Wrapping fixed-point division by integer.

Wrapping fixed-point remainder for division by integer.

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 multiplication by integer.

Overflowing fixed-point division by integer.

Overflowing fixed-point remainder for division by integer.

Overflowing fixed-point left shift.

Overflowing fixed-point right shift.

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

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 3/8 is 0.0110
let three_eights = Fix::from_bits(0b0110);
// 1/2 is 0.1000
let half = Fix::from_bits(0b1000);
assert!(!three_eights.is_power_of_two());
assert!(half.is_power_of_two());

Returns the smallest power of two ≥ self.

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 3/8 is 0.0110
let three_eights = Fix::from_bits(0b0110);
// 1/2 is 0.1000
let half = Fix::from_bits(0b1000);
assert_eq!(three_eights.next_power_of_two(), half);
assert_eq!(half.next_power_of_two(), half);

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

Examples

use fixed::frac;
use fixed::FixedU8;
type Fix = FixedU8<frac::U4>;
// 3/8 is 0.0110
let three_eights = Fix::from_bits(0b0110);
// 1/2 is 0.1000
let half = Fix::from_bits(0b1000);
assert_eq!(three_eights.checked_next_power_of_two(), Some(half));
assert!(Fix::max_value().checked_next_power_of_two().is_none());

Trait Implementations

impl<Frac> Add<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, Frac> Add<FixedU8<Frac>> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, Frac> Add<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<'a, 'b, Frac> Add<&'a FixedU8<Frac>> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl<Frac> AddAssign<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the += operation.

impl<'a, Frac> AddAssign<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the += operation.

impl<Frac> Sub<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, Frac> Sub<FixedU8<Frac>> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, Frac> Sub<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<'a, 'b, Frac> Sub<&'a FixedU8<Frac>> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl<Frac> SubAssign<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the -= operation.

impl<'a, Frac> SubAssign<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the -= operation.

impl<Frac> Mul<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, Frac> Mul<FixedU8<Frac>> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, Frac> Mul<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b, Frac> Mul<&'a FixedU8<Frac>> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<Frac> MulAssign<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the *= operation.

impl<'a, Frac> MulAssign<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the *= operation.

impl<Frac> Div<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, Frac> Div<FixedU8<Frac>> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, Frac> Div<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b, Frac> Div<&'a FixedU8<Frac>> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<Frac> DivAssign<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the /= operation.

impl<'a, Frac> DivAssign<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the /= operation.

impl<Frac> Not for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl<'a, Frac> Not for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl<Frac> BitAnd<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<'a, Frac> BitAnd<FixedU8<Frac>> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<'a, Frac> BitAnd<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<'a, 'b, Frac> BitAnd<&'a FixedU8<Frac>> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl<Frac> BitAndAssign<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the &= operation.

impl<'a, Frac> BitAndAssign<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the &= operation.

impl<Frac> BitOr<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<'a, Frac> BitOr<FixedU8<Frac>> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<'a, Frac> BitOr<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<'a, 'b, Frac> BitOr<&'a FixedU8<Frac>> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl<Frac> BitOrAssign<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the |= operation.

impl<'a, Frac> BitOrAssign<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the |= operation.

impl<Frac> BitXor<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<'a, Frac> BitXor<FixedU8<Frac>> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<'a, Frac> BitXor<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<'a, 'b, Frac> BitXor<&'a FixedU8<Frac>> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl<Frac> BitXorAssign<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the ^= operation.

impl<'a, Frac> BitXorAssign<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the ^= operation.

impl<Frac> Mul<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<Frac> Mul<FixedU8<Frac>> for u8 where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, Frac> Mul<u8> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, Frac> Mul<&'a FixedU8<Frac>> for u8 where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, Frac> Mul<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, Frac> Mul<FixedU8<Frac>> for &'a u8 where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b, Frac> Mul<&'a u8> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<'a, 'b, Frac> Mul<&'a FixedU8<Frac>> for &'b u8 where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl<Frac> MulAssign<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the *= operation.

impl<'a, Frac> MulAssign<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the *= operation.

impl<Frac> Div<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, Frac> Div<u8> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, Frac> Div<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<'a, 'b, Frac> Div<&'a u8> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl<Frac> DivAssign<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the /= operation.

impl<'a, Frac> DivAssign<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the /= operation.

impl<Frac> Rem<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, Frac> Rem<u8> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, Frac> Rem<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<'a, 'b, Frac> Rem<&'a u8> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl<Frac> RemAssign<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the %= operation.

impl<'a, Frac> RemAssign<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the %= operation.

impl<Frac> Shl<i8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<i8> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a i8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a i8> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<i8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a i8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<i16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<i16> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a i16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a i16> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<i16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a i16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<i32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<i32> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a i32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a i32> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<i32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a i32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<i64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<i64> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a i64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a i64> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<i64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a i64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<i128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<i128> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a i128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a i128> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<i128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a i128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<isize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<isize> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a isize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a isize> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<isize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a isize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<u8> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a u8> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<u16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<u16> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a u16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a u16> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<u16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a u16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<u32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<u32> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a u32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a u32> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<u32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a u32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<u64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<u64> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a u64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a u64> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<u64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a u64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<u128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<u128> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a u128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a u128> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<u128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a u128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shl<usize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<usize> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, Frac> Shl<&'a usize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<'a, 'b, Frac> Shl<&'a usize> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl<Frac> ShlAssign<usize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<'a, Frac> ShlAssign<&'a usize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the <<= operation.

impl<Frac> Shr<i8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<i8> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a i8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a i8> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<i8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a i8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<i16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<i16> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a i16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a i16> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<i16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a i16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<i32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<i32> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a i32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a i32> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<i32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a i32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<i64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<i64> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a i64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a i64> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<i64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a i64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<i128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<i128> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a i128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a i128> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<i128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a i128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<isize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<isize> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a isize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a isize> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<isize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a isize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<u8> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a u8> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<u16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<u16> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a u16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a u16> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<u16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a u16> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<u32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<u32> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a u32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a u32> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<u32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a u32> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<u64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<u64> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a u64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a u64> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<u64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a u64> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<u128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<u128> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a u128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a u128> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<u128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a u128> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Shr<usize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<usize> for &'a FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, Frac> Shr<&'a usize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<'a, 'b, Frac> Shr<&'a usize> for &'b FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl<Frac> ShrAssign<usize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<'a, Frac> ShrAssign<&'a usize> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the >>= operation.

impl<Frac> Sum<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

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

impl<'a, Frac> Sum<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: 'a + Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

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

impl<Frac> Product<FixedU8<Frac>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

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

impl<'a, Frac> Product<&'a FixedU8<Frac>> for FixedU8<Frac> where
    Frac: 'a + Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

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

impl<Frac> Eq for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

impl<Frac, FracRhs> PartialEq<FixedU8<FracRhs>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>,
    FracRhs: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

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

This method tests for !=.

impl<Frac> PartialEq<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

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

This method tests for !=.

impl<Frac> PartialEq<FixedU8<Frac>> for u8 where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

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

This method tests for !=.

impl<Frac> Ord for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[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, FracRhs> PartialOrd<FixedU8<FracRhs>> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>,
    FracRhs: Unsigned + IsLessOrEqual<U8, Output = True>, 
[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> PartialOrd<u8> for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[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> PartialOrd<FixedU8<Frac>> for u8 where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[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> Display for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Formats the value using the given formatter. Read more

impl<Frac> Debug for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Formats the value using the given formatter. Read more

impl<Frac> Binary for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Formats the value using the given formatter.

impl<Frac> Octal for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Formats the value using the given formatter.

impl<Frac> LowerHex for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Formats the value using the given formatter.

impl<Frac> UpperHex for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Formats the value using the given formatter.

impl<Frac> From<FixedU8<Frac>> for f32 where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the conversion.

impl<Frac> From<FixedU8<Frac>> for f64 where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Performs the conversion.

impl<Frac> Clone for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Frac> Copy for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

impl<Frac> Default for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

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

impl<Frac> Hash for FixedU8<Frac> where
    Frac: Unsigned + IsLessOrEqual<U8, Output = True>, 
[src]

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

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

Auto Trait Implementations

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

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