[−][src]Struct fixed::FixedI32
A 32-bit fixed-point signed number with Frac
fractional bits.
Frac
is an Unsigned
as provided by the typenum crate; the
plan is to move to const generics in version 2 when they are
supported by the Rust compiler.
Examples
use fixed::{types::extra::U3, FixedI32}; let eleven = FixedI32::<U3>::from_num(11); assert_eq!(eleven, FixedI32::<U3>::from_bits(11 << 3)); assert_eq!(eleven, 11); assert_eq!(eleven.to_string(), "11"); let two_point_75 = eleven / 4; assert_eq!(two_point_75, FixedI32::<U3>::from_bits(11 << 1)); assert_eq!(two_point_75, 2.75); assert_eq!(two_point_75.to_string(), "2.8");
Implementations
impl<Frac> FixedI32<Frac>
[src]
The implementation of items in this block is independent
of the number of fractional bits Frac
.
pub const MIN: FixedI32<Frac>
[src]
The smallest value that can be represented.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::MIN, Fix::from_bits(i32::MIN));
pub const MAX: FixedI32<Frac>
[src]
The largest value that can be represented.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::MAX, Fix::from_bits(i32::MAX));
pub const fn from_bits(bits: i32) -> FixedI32<Frac>
[src]
Creates a fixed-point number that has a bitwise representation identical to the given integer.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; // 0010.0000 == 2 assert_eq!(Fix::from_bits(0b10_0000), 2);
pub const fn to_bits(self) -> i32
[src]
Creates an integer that has a bitwise representation identical to the given fixed-point number.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; // 2 is 0010.0000 assert_eq!(Fix::from_num(2).to_bits(), 0b10_0000);
pub fn from_be_bytes(bytes: [u8; 4]) -> FixedI32<Frac>
[src]
Creates a fixed-point number from its representation as a byte array in big endian.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!( Fix::from_be_bytes([0x12, 0x34, 0x56, 0x78]), Fix::from_bits(0x1234_5678) );
pub fn from_le_bytes(bytes: [u8; 4]) -> FixedI32<Frac>
[src]
Creates a fixed-point number from its representation as a byte array in little endian.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!( Fix::from_le_bytes([0x78, 0x56, 0x34, 0x12]), Fix::from_bits(0x1234_5678) );
pub fn from_ne_bytes(bytes: [u8; 4]) -> FixedI32<Frac>
[src]
Creates a fixed-point number from its representation as a byte array in native endian.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!( if cfg!(target_endian = "big") { Fix::from_ne_bytes([0x12, 0x34, 0x56, 0x78]) } else { Fix::from_ne_bytes([0x78, 0x56, 0x34, 0x12]) }, Fix::from_bits(0x1234_5678) );
pub fn to_be_bytes(self) -> [u8; 4]
[src]
Returns the memory representation of this fixed-point number as a byte array in big-endian byte order.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let val = Fix::from_bits(0x1234_5678); assert_eq!( val.to_be_bytes(), [0x12, 0x34, 0x56, 0x78] );
pub fn to_le_bytes(self) -> [u8; 4]
[src]
Returns the memory representation of this fixed-point number as a byte array in little-endian byte order.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let val = Fix::from_bits(0x1234_5678); assert_eq!( val.to_le_bytes(), [0x78, 0x56, 0x34, 0x12] );
pub fn to_ne_bytes(self) -> [u8; 4]
[src]
Returns the memory representation of this fixed-point number as a byte array in native byte order.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let val = Fix::from_bits(0x1234_5678); assert_eq!( val.to_ne_bytes(), if cfg!(target_endian = "big") { [0x12, 0x34, 0x56, 0x78] } else { [0x78, 0x56, 0x34, 0x12] } );
pub const fn count_ones(self) -> u32
[src]
Returns the number of ones in the binary representation.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let f = Fix::from_bits(0b11_0010); assert_eq!(f.count_ones(), 3);
pub const fn count_zeros(self) -> u32
[src]
Returns the number of zeros in the binary representation.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let f = Fix::from_bits(!0b11_0010); assert_eq!(f.count_zeros(), 3);
pub const fn leading_ones(self) -> u32
[src]
Returns the number of leading ones in the binary representation.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let all_ones = !Fix::from_bits(0); let f = all_ones - Fix::from_bits(0b10_0000); assert_eq!(f.leading_ones(), 32 - 6);
pub const fn leading_zeros(self) -> u32
[src]
Returns the number of leading zeros in the binary representation.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let f = Fix::from_bits(0b10_0000); assert_eq!(f.leading_zeros(), 32 - 6);
pub const fn trailing_ones(self) -> u32
[src]
Returns the number of trailing ones in the binary representation.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let f = Fix::from_bits(0b101_1111); assert_eq!(f.trailing_ones(), 5);
pub const fn trailing_zeros(self) -> u32
[src]
Returns the number of trailing zeros in the binary representation.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let f = Fix::from_bits(0b10_0000); assert_eq!(f.trailing_zeros(), 5);
pub const fn rotate_left(self, n: u32) -> FixedI32<Frac>
[src]
Shifts to the left by n
bits, wrapping the
truncated bits to the right end.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let bits: i32 = (0b111 << (32 - 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));
pub const fn rotate_right(self, n: u32) -> FixedI32<Frac>
[src]
Shifts to the right by n
bits, wrapping the
truncated bits to the left end.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let bits: i32 = 0b1010111; let rot = (0b111 << (32 - 3)) | 0b1010; assert_eq!(bits.rotate_right(3), rot); assert_eq!(Fix::from_bits(bits).rotate_right(3), Fix::from_bits(rot));
pub const fn is_positive(self) -> bool
[src]
Returns true
if the number is > 0.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert!(Fix::from_num(5).is_positive()); assert!(!Fix::from_num(0).is_positive()); assert!(!Fix::from_num(-5).is_positive());
pub const fn is_negative(self) -> bool
[src]
Returns true
if the number is < 0.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert!(!Fix::from_num(5).is_negative()); assert!(!Fix::from_num(0).is_negative()); assert!(Fix::from_num(-5).is_negative());
pub fn rem_euclid(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Remainder for Euclidean division.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).rem_euclid(Fix::from_num(2)), Fix::from_num(1.5)); assert_eq!(Fix::from_num(-7.5).rem_euclid(Fix::from_num(2)), Fix::from_num(0.5));
pub const fn abs(self) -> FixedI32<Frac>
[src]
Returns the absolute value.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let five = Fix::from_num(5); let minus_five = Fix::from_num(-5); assert_eq!(five.abs(), five); assert_eq!(minus_five.abs(), five);
pub fn checked_neg(self) -> Option<FixedI32<Frac>>
[src]
Checked negation. Returns the negated value, or None
on overflow.
Overflow can only occur when negating the minimum value.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(5).checked_neg(), Some(Fix::from_num(-5))); assert_eq!(Fix::MIN.checked_neg(), None);
pub fn checked_add(self, rhs: FixedI32<Frac>) -> Option<FixedI32<Frac>>
[src]
Checked addition. Returns the sum, or None
on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let one = Fix::from_num(1); assert_eq!((Fix::MAX - one).checked_add(one), Some(Fix::MAX)); assert_eq!(Fix::MAX.checked_add(one), None);
pub fn checked_sub(self, rhs: FixedI32<Frac>) -> Option<FixedI32<Frac>>
[src]
Checked subtraction. Returns the difference, or None
on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let one = Fix::from_num(1); assert_eq!((Fix::MIN + one).checked_sub(one), Some(Fix::MIN)); assert_eq!(Fix::MIN.checked_sub(one), None);
pub fn checked_rem(self, rhs: FixedI32<Frac>) -> Option<FixedI32<Frac>>
[src]
Checked remainder. Returns the remainder, or None
if
the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(1.5).checked_rem(Fix::from_num(1)), Some(Fix::from_num(0.5))); assert_eq!(Fix::from_num(1.5).checked_rem(Fix::from_num(0)), None);
pub fn checked_mul_int(self, rhs: i32) -> Option<FixedI32<Frac>>
[src]
Checked multiplication by an integer. Returns the
product, or None
on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::MAX.checked_mul_int(1), Some(Fix::MAX)); assert_eq!(Fix::MAX.checked_mul_int(2), None);
pub fn checked_div_int(self, rhs: i32) -> Option<FixedI32<Frac>>
[src]
Checked division by an integer. Returns the quotient, or
None
if the divisor is zero or if the division results in overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::MAX.checked_div_int(1), Some(Fix::MAX)); assert_eq!(Fix::from_num(1).checked_div_int(0), None); assert_eq!(Fix::MIN.checked_div_int(-1), None);
pub fn checked_rem_euclid(self, rhs: FixedI32<Frac>) -> Option<FixedI32<Frac>>
[src]
Checked remainder for Euclidean division. Returns the
remainder, or None
if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let num = Fix::from_num(7.5); assert_eq!(num.checked_rem_euclid(Fix::from_num(2)), Some(Fix::from_num(1.5))); assert_eq!(num.checked_rem_euclid(Fix::from_num(0)), None); assert_eq!((-num).checked_rem_euclid(Fix::from_num(2)), Some(Fix::from_num(0.5)));
pub fn checked_shl(self, rhs: u32) -> Option<FixedI32<Frac>>
[src]
Checked shift left. Returns the shifted number,
or None
if rhs
≥ 32.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!((Fix::from_num(1) / 2).checked_shl(3), Some(Fix::from_num(4))); assert_eq!((Fix::from_num(1) / 2).checked_shl(32), None);
pub fn checked_shr(self, rhs: u32) -> Option<FixedI32<Frac>>
[src]
Checked shift right. Returns the shifted number,
or None
if rhs
≥ 32.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(4).checked_shr(3), Some(Fix::from_num(1) / 2)); assert_eq!(Fix::from_num(4).checked_shr(32), None);
pub fn checked_abs(self) -> Option<FixedI32<Frac>>
[src]
Checked absolute value. Returns the absolute value, or None
on overflow.
Overflow can only occur when trying to find the absolute value of the minimum value.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(-5).checked_abs(), Some(Fix::from_num(5))); assert_eq!(Fix::MIN.checked_abs(), None);
pub const fn saturating_neg(self) -> FixedI32<Frac>
[src]
Saturating negation. Returns the negated value, saturating on overflow.
Overflow can only occur when negating the minimum value.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(5).saturating_neg(), Fix::from_num(-5)); assert_eq!(Fix::MIN.saturating_neg(), Fix::MAX);
pub const fn saturating_add(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Saturating addition. Returns the sum, saturating on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(3).saturating_add(Fix::from_num(2)), Fix::from_num(5)); assert_eq!(Fix::MAX.saturating_add(Fix::from_num(1)), Fix::MAX);
pub const fn saturating_sub(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Saturating subtraction. Returns the difference, saturating on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(1).saturating_sub(Fix::from_num(3)), Fix::from_num(-2)); assert_eq!(Fix::MIN.saturating_sub(Fix::from_num(1)), Fix::MIN);
pub const fn saturating_mul_int(self, rhs: i32) -> FixedI32<Frac>
[src]
Saturating multiplication by an integer. Returns the product, saturating on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(3).saturating_mul_int(2), Fix::from_num(6)); assert_eq!(Fix::MAX.saturating_mul_int(2), Fix::MAX);
pub const fn saturating_abs(self) -> FixedI32<Frac>
[src]
Saturating absolute value. Returns the absolute value, saturating on overflow.
Overflow can only occur when trying to find the absolute value of the minimum value.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(-5).saturating_abs(), Fix::from_num(5)); assert_eq!(Fix::MIN.saturating_abs(), Fix::MAX);
pub const fn wrapping_neg(self) -> FixedI32<Frac>
[src]
Wrapping negation. Returns the negated value, wrapping on overflow.
Overflow can only occur when negating the minimum value.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(5).wrapping_neg(), Fix::from_num(-5)); assert_eq!(Fix::MIN.wrapping_neg(), Fix::MIN);
pub const fn wrapping_add(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Wrapping addition. Returns the sum, wrapping on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let one = Fix::from_num(1); let one_minus_bit = one - Fix::from_bits(1); assert_eq!(Fix::from_num(3).wrapping_add(Fix::from_num(2)), Fix::from_num(5)); assert_eq!(Fix::MAX.wrapping_add(one), Fix::MIN + one_minus_bit);
pub const fn wrapping_sub(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Wrapping subtraction. Returns the difference, wrapping on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let one = Fix::from_num(1); let one_minus_bit = one - Fix::from_bits(1); assert_eq!(Fix::from_num(3).wrapping_sub(Fix::from_num(5)), Fix::from_num(-2)); assert_eq!(Fix::MIN.wrapping_sub(one), Fix::MAX - one_minus_bit);
pub const fn wrapping_mul_int(self, rhs: i32) -> FixedI32<Frac>
[src]
Wrapping multiplication by an integer. Returns the product, wrapping on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(3).wrapping_mul_int(2), Fix::from_num(6)); let wrapped = Fix::from_bits(!0 << 2); assert_eq!(Fix::MAX.wrapping_mul_int(4), wrapped);
pub fn wrapping_div_int(self, rhs: i32) -> FixedI32<Frac>
[src]
Wrapping division by an integer. Returns the quotient, wrapping on overflow.
Overflow can only occur when dividing the minimum value by −1.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; // 1.5 is binary 1.1 let one_point_5 = Fix::from_bits(0b11 << (4 - 1)); assert_eq!(Fix::from_num(3).wrapping_div_int(2), one_point_5); assert_eq!(Fix::MIN.wrapping_div_int(-1), Fix::MIN);
pub const fn wrapping_shl(self, rhs: u32) -> FixedI32<Frac>
[src]
Wrapping shift left. Wraps rhs
if rhs
≥ 32,
then shifts and returns the number.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!((Fix::from_num(1) / 2).wrapping_shl(3), Fix::from_num(4)); assert_eq!((Fix::from_num(1) / 2).wrapping_shl(3 + 32), Fix::from_num(4));
pub const fn wrapping_shr(self, rhs: u32) -> FixedI32<Frac>
[src]
Wrapping shift right. Wraps rhs
if rhs
≥ 32,
then shifts and returns the number.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!((Fix::from_num(4)).wrapping_shr(3), Fix::from_num(1) / 2); assert_eq!((Fix::from_num(4)).wrapping_shr(3 + 32), Fix::from_num(1) / 2);
pub const fn wrapping_abs(self) -> FixedI32<Frac>
[src]
Wrapping absolute value. Returns the absolute value, wrapping on overflow.
Overflow can only occur when trying to find the absolute value of the minimum value.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(-5).wrapping_abs(), Fix::from_num(5)); assert_eq!(Fix::MIN.wrapping_abs(), Fix::MIN);
pub const fn overflowing_neg(self) -> (FixedI32<Frac>, bool)
[src]
Overflowing negation.
Returns a tuple of the negated value and a bool
indicating whether
an overflow has occurred. On overflow, the wrapped value is returned.
Overflow can only occur when negating the minimum value.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(5).overflowing_neg(), (Fix::from_num(-5), false)); assert_eq!(Fix::MIN.overflowing_neg(), (Fix::MIN, true));
pub const fn overflowing_add(
self,
rhs: FixedI32<Frac>
) -> (FixedI32<Frac>, bool)
[src]
self,
rhs: FixedI32<Frac>
) -> (FixedI32<Frac>, bool)
Overflowing addition.
Returns a tuple of the sum and a bool
indicating whether an
overflow has occurred. On overflow, the wrapped value is returned.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let one = Fix::from_num(1); let one_minus_bit = one - Fix::from_bits(1); assert_eq!(Fix::from_num(3).overflowing_add(Fix::from_num(2)), (Fix::from_num(5), false)); assert_eq!(Fix::MAX.overflowing_add(one), (Fix::MIN + one_minus_bit, true));
pub const fn overflowing_sub(
self,
rhs: FixedI32<Frac>
) -> (FixedI32<Frac>, bool)
[src]
self,
rhs: FixedI32<Frac>
) -> (FixedI32<Frac>, bool)
Overflowing subtraction.
Returns a tuple of the difference and a bool
indicating whether an
overflow has occurred. On overflow, the wrapped value is returned.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let one = Fix::from_num(1); let one_minus_bit = one - Fix::from_bits(1); assert_eq!(Fix::from_num(3).overflowing_sub(Fix::from_num(5)), (Fix::from_num(-2), false)); assert_eq!(Fix::MIN.overflowing_sub(one), (Fix::MAX - one_minus_bit, true));
pub const fn overflowing_mul_int(self, rhs: i32) -> (FixedI32<Frac>, bool)
[src]
Overflowing multiplication by an integer.
Returns a tuple of the product and a bool
indicating whether an
overflow has occurred. On overflow, the wrapped value is returned.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(3).overflowing_mul_int(2), (Fix::from_num(6), false)); let wrapped = Fix::from_bits(!0 << 2); assert_eq!(Fix::MAX.overflowing_mul_int(4), (wrapped, true));
pub fn overflowing_div_int(self, rhs: i32) -> (FixedI32<Frac>, bool)
[src]
Overflowing division by an integer.
Returns a tuple of the quotient and a bool
indicating whether an overflow has
occurred. On overflow, the wrapped value is returned. Overflow can
only occur when dividing the minimum value by −1.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; // 1.5 is binary 1.1 let one_point_5 = Fix::from_bits(0b11 << (4 - 1)); assert_eq!(Fix::from_num(3).overflowing_div_int(2), (one_point_5, false)); assert_eq!(Fix::MIN.overflowing_div_int(-1), (Fix::MIN, true));
pub const fn overflowing_shl(self, rhs: u32) -> (FixedI32<Frac>, bool)
[src]
Overflowing shift left.
Returns a tuple of the shifted value and a bool
indicating whether
an overflow has occurred. Overflow occurs when rhs
≥ 32.
On overflow rhs
is wrapped before the shift operation.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!((Fix::from_num(1) / 2).overflowing_shl(3), (Fix::from_num(4), false)); assert_eq!((Fix::from_num(1) / 2).overflowing_shl(3 + 32), (Fix::from_num(4), true));
pub const fn overflowing_shr(self, rhs: u32) -> (FixedI32<Frac>, bool)
[src]
Overflowing shift right.
Returns a tuple of the shifted value and a bool
indicating whether
an overflow has occurred. Overflow occurs when rhs
≥ 32.
On overflow rhs
is wrapped before the shift operation.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!((Fix::from_num(4)).overflowing_shr(3), (Fix::from_num(1) / 2, false)); assert_eq!((Fix::from_num(4)).overflowing_shr(3 + 32), (Fix::from_num(1) / 2, true));
pub const fn overflowing_abs(self) -> (FixedI32<Frac>, bool)
[src]
Overflowing absolute value.
Returns a tuple of the absolute value and a bool
indicating
whether an overflow has occurred. On overflow, the wrapped value is
returned.
Overflow can only occur when trying to find the absolute value of the minimum value.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(-5).overflowing_abs(), (Fix::from_num(5), false)); assert_eq!(Fix::MIN.overflowing_abs(), (Fix::MIN, true));
pub const fn min_value() -> FixedI32<Frac>
[src]
replaced by MIN
Returns the smallest value that can be represented.
pub const fn max_value() -> FixedI32<Frac>
[src]
replaced by MAX
Returns the largest value that can be represented.
impl<Frac: LeEqU32> FixedI32<Frac>
[src]
The implementation of items in this block depends on the
number of fractional bits Frac
.
pub const INT_NBITS: u32
[src]
The number of integer bits.
Examples
use fixed::{types::extra::U6, FixedI32}; type Fix = FixedI32<U6>; assert_eq!(Fix::INT_NBITS, 32 - 6);
pub const FRAC_NBITS: u32
[src]
The number of fractional bits.
Examples
use fixed::{types::extra::U6, FixedI32}; type Fix = FixedI32<U6>; assert_eq!(Fix::FRAC_NBITS, 6);
pub fn from_num<Src: ToFixed>(src: Src) -> FixedI32<Frac>
[src]
Creates a fixed-point number from another number.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other number
src
for whichToFixed
is implemented, in which case this method returnssrc.to_fixed()
.
Panics
For floating-point numbers, panics if the value is not finite.
When debug assertions are enabled, panics if the value does not fit.
When debug assertions are not enabled, the wrapped value can be
returned, but it is not considered a breaking change if in the future
it panics; if wrapping is required use wrapping_from_num
instead.
Examples
use fixed::{types::extra::U4, types::I16F16, FixedI32}; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = I16F16::from_bits(0b111 << (16 - 2)); assert_eq!(Fix::from_num(src), Fix::from_bits(0b111 << (4 - 2))); assert_eq!(Fix::from_num(3i32), Fix::from_bits(3 << 4)); assert_eq!(Fix::from_num(-3i64), Fix::from_bits(-3 << 4)); assert_eq!(Fix::from_num(1.75f32), Fix::from_bits(0b111 << (4 - 2))); assert_eq!(Fix::from_num(-1.75f64), Fix::from_bits(-0b111 << (4-2)));
pub fn to_num<Dst: FromFixed>(self) -> Dst
[src]
Converts a fixed-point number to another number.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. Any fractional bits are discarded, which rounds towards −∞. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other type
Dst
for whichFromFixed
is implemented, in which case this method returnsDst::from_fixed(self)
.
Panics
When debug assertions are enabled, panics if the value does not fit.
When debug assertions are not enabled, the wrapped value can be
returned, but it is not considered a breaking change if in the future
it panics; if wrapping is required use wrapping_to_num
instead.
Examples
use fixed::{types::extra::U4, types::I30F2, FixedI32}; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = Fix::from_bits(0b111 << (4 - 2)); assert_eq!(src.to_num::<I30F2>(), I30F2::from_bits(0b111)); // src >> 2 is 0.0111, which for I30F2 is truncated to 0.01 assert_eq!((src >> 2u32).to_num::<I30F2>(), I30F2::from_bits(1)); // 2.5 is 10.1 in binary let two_point_5 = Fix::from_bits(0b101 << (4 - 1)); assert_eq!(two_point_5.to_num::<i32>(), 2); assert_eq!((-two_point_5).to_num::<i64>(), -3); // 1.625 is 1.101 in binary let one_point_625 = Fix::from_bits(0b1101 << (4 - 3)); assert_eq!(one_point_625.to_num::<f32>(), 1.625f32); assert_eq!((-one_point_625).to_num::<f64>(), -1.625f64);
pub fn checked_from_num<Src: ToFixed>(src: Src) -> Option<FixedI32<Frac>>
[src]
Creates a fixed-point number from another number if it
fits, otherwise returns None
.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other number
src
for whichToFixed
is implemented, in which case this method returnssrc.checked_to_fixed()
.
Examples
use fixed::{ types::extra::{U2, U4}, types::I16F16, FixedI32, }; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = I16F16::from_bits(0b111 << (16 - 2)); assert_eq!(Fix::checked_from_num(src), Some(Fix::from_bits(0b111 << (4 - 2)))); let too_large = FixedI32::<U2>::MAX; assert!(Fix::checked_from_num(too_large).is_none()); assert_eq!(Fix::checked_from_num(3), Some(Fix::from_bits(3 << 4))); let too_large = i32::MAX; assert!(Fix::checked_from_num(too_large).is_none()); let too_small = i32::MIN; assert!(Fix::checked_from_num(too_small).is_none()); // 1.75 is 1.11 in binary let expected = Fix::from_bits(0b111 << (4 - 2)); assert_eq!(Fix::checked_from_num(1.75f32), Some(expected)); assert_eq!(Fix::checked_from_num(-1.75f64), Some(-expected)); assert!(Fix::checked_from_num(2e38).is_none()); assert!(Fix::checked_from_num(std::f64::NAN).is_none());
pub fn checked_to_num<Dst: FromFixed>(self) -> Option<Dst>
[src]
Converts a fixed-point number to another number if it
fits, otherwise returns None
.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. Any fractional bits are discarded, which rounds towards −∞. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other type
Dst
for whichFromFixed
is implemented, in which case this method returnsDst::checked_from_fixed(self)
.
Examples
use fixed::{ types::extra::{U0, U4, U6}, types::I16F16, FixedI32, }; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = Fix::from_bits(0b111 << (4 - 2)); let expected = I16F16::from_bits(0b111 << (16 - 2)); assert_eq!(src.checked_to_num::<I16F16>(), Some(expected)); type TooFewIntBits = FixedI32<U6>; assert!(Fix::MAX.checked_to_num::<TooFewIntBits>().is_none()); // 2.5 is 10.1 in binary let two_point_5 = Fix::from_bits(0b101 << (4 - 1)); assert_eq!(two_point_5.checked_to_num::<i32>(), Some(2)); assert_eq!((-two_point_5).checked_to_num::<i64>(), Some(-3)); type AllInt = FixedI32<U0>; assert!(AllInt::from_bits(-1).checked_to_num::<u32>().is_none()); // 1.625 is 1.101 in binary let one_point_625 = Fix::from_bits(0b1101 << (4 - 3)); assert_eq!(one_point_625.checked_to_num::<f32>(), Some(1.625f32));
pub fn saturating_from_num<Src: ToFixed>(src: Src) -> FixedI32<Frac>
[src]
Creates a fixed-point number from another number, saturating if it does not fit.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other number
src
for whichToFixed
is implemented, in which case this method returnssrc.saturating_to_fixed()
.
Panics
This method panics if the value is a floating-point NaN.
Examples
use fixed::{ types::extra::{U2, U4}, types::I16F16, FixedI32, }; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = I16F16::from_bits(0b111 << (16 - 2)); assert_eq!(Fix::saturating_from_num(src), Fix::from_bits(0b111 << (4 - 2))); let too_large = FixedI32::<U2>::MAX; assert_eq!(Fix::saturating_from_num(too_large), Fix::MAX); assert_eq!(Fix::saturating_from_num(3), Fix::from_bits(3 << 4)); let too_small = i32::MIN; assert_eq!(Fix::saturating_from_num(too_small), Fix::MIN); // 1.75 is 1.11 in binary let expected = Fix::from_bits(0b111 << (4 - 2)); assert_eq!(Fix::saturating_from_num(1.75f32), expected); assert_eq!(Fix::saturating_from_num(-1.75f64), -expected); assert_eq!(Fix::saturating_from_num(2e38), Fix::MAX); assert_eq!(Fix::saturating_from_num(std::f64::NEG_INFINITY), Fix::MIN);
pub fn saturating_to_num<Dst: FromFixed>(self) -> Dst
[src]
Converts a fixed-point number to another number, saturating the value if it does not fit.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. Any fractional bits are discarded, which rounds towards −∞. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other type
Dst
for whichFromFixed
is implemented, in which case this method returnsDst::saturating_from_fixed(self)
.
Examples
use fixed::{ types::extra::{U0, U4, U6}, types::I16F16, FixedI32, }; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = Fix::from_bits(0b111 << (4 - 2)); let expected = I16F16::from_bits(0b111 << (16 - 2)); assert_eq!(src.saturating_to_num::<I16F16>(), expected); type TooFewIntBits = FixedI32<U6>; let saturated = Fix::MAX.saturating_to_num::<TooFewIntBits>(); assert_eq!(saturated, TooFewIntBits::MAX); // 2.5 is 10.1 in binary let two_point_5 = Fix::from_bits(0b101 << (4 - 1)); assert_eq!(two_point_5.saturating_to_num::<i32>(), 2); type AllInt = FixedI32<U0>; assert_eq!(AllInt::from_bits(-1).saturating_to_num::<u32>(), 0); // 1.625 is 1.101 in binary let one_point_625 = Fix::from_bits(0b1101 << (4 - 3)); assert_eq!(one_point_625.saturating_to_num::<f32>(), 1.625f32);
pub fn wrapping_from_num<Src: ToFixed>(src: Src) -> FixedI32<Frac>
[src]
Creates a fixed-point number from another number, wrapping the value on overflow.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other number
src
for whichToFixed
is implemented, in which case this method returnssrc.wrapping_to_fixed()
.
Panics
For floating-point numbers, panics if the value is not finite.
Examples
use fixed::{ types::extra::{U0, U4}, types::I16F16, FixedI32, }; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = I16F16::from_bits(0b111 << (16 - 2)); assert_eq!(Fix::wrapping_from_num(src), Fix::from_bits(0b111 << (4 - 2))); // integer 0b1101 << (32 - 7) will wrap to fixed-point 1010... let too_large = FixedI32::<U0>::from_bits(0b1101 << (32 - 7)); let wrapped = Fix::from_bits(0b1010 << (32 - 4)); assert_eq!(Fix::wrapping_from_num(too_large), wrapped); // integer 0b1101 << (32 - 7) will wrap to fixed-point 1010... let large: i32 = 0b1101 << (32 - 7); let wrapped = Fix::from_bits(0b1010 << (32 - 4)); assert_eq!(Fix::wrapping_from_num(large), wrapped); // 1.75 is 1.11 in binary let expected = Fix::from_bits(0b111 << (4 - 2)); assert_eq!(Fix::wrapping_from_num(1.75f32), expected); // 1.75 << (32 - 4) wraps to binary 11000... let large = 1.75 * 2f32.powi(32 - 4); let wrapped = Fix::from_bits(0b1100 << (32 - 4)); assert_eq!(Fix::wrapping_from_num(large), wrapped);
pub fn wrapping_to_num<Dst: FromFixed>(self) -> Dst
[src]
Converts a fixed-point number to another number, wrapping the value on overflow.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. Any fractional bits are discarded, which rounds towards −∞. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other type
Dst
for whichFromFixed
is implemented, in which case this method returnsDst::wrapping_from_fixed(self)
.
Examples
use fixed::{ types::extra::{U0, U4, U6}, types::I16F16, FixedI32, }; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = Fix::from_bits(0b111 << (4 - 2)); let expected = I16F16::from_bits(0b111 << (16 - 2)); assert_eq!(src.wrapping_to_num::<I16F16>(), expected); type TooFewIntBits = FixedI32<U6>; let wrapped = TooFewIntBits::from_bits(Fix::MAX.to_bits() << 2); assert_eq!(Fix::MAX.wrapping_to_num::<TooFewIntBits>(), wrapped); // 2.5 is 10.1 in binary let two_point_5 = Fix::from_bits(0b101 << (4 - 1)); assert_eq!(two_point_5.wrapping_to_num::<i32>(), 2); type AllInt = FixedI32<U0>; assert_eq!(AllInt::from_bits(-1).wrapping_to_num::<u32>(), u32::MAX); // 1.625 is 1.101 in binary let one_point_625 = Fix::from_bits(0b1101 << (4 - 3)); assert_eq!(one_point_625.wrapping_to_num::<f32>(), 1.625f32);
pub fn overflowing_from_num<Src: ToFixed>(src: Src) -> (FixedI32<Frac>, bool)
[src]
Creates a fixed-point number from another number.
Returns a tuple of the fixed-point number and a bool
indicating
whether an overflow has occurred. On overflow, the wrapped value is
returned.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other number
src
for whichToFixed
is implemented, in which case this method returnssrc.overflowing_to_fixed()
.
Panics
For floating-point numbers, panics if the value is not finite.
Examples
use fixed::{ types::extra::{U0, U4}, types::I16F16, FixedI32, }; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = I16F16::from_bits(0b111 << (16 - 2)); let expected = Fix::from_bits(0b111 << (4 - 2)); assert_eq!(Fix::overflowing_from_num(src), (expected, false)); // integer 0b1101 << (32 - 7) will wrap to fixed-point 1010... let too_large = FixedI32::<U0>::from_bits(0b1101 << (32 - 7)); let wrapped = Fix::from_bits(0b1010 << (32 - 4)); assert_eq!(Fix::overflowing_from_num(too_large), (wrapped, true)); assert_eq!(Fix::overflowing_from_num(3), (Fix::from_bits(3 << 4), false)); // integer 0b1101 << (32 - 7) will wrap to fixed-point 1010... let large: i32 = 0b1101 << (32 - 7); let wrapped = Fix::from_bits(0b1010 << (32 - 4)); assert_eq!(Fix::overflowing_from_num(large), (wrapped, true)); // 1.75 is 1.11 in binary let expected = Fix::from_bits(0b111 << (4 - 2)); assert_eq!(Fix::overflowing_from_num(1.75f32), (expected, false)); // 1.75 << (32 - 4) wraps to binary 11000... let large = 1.75 * 2f32.powi(32 - 4); let wrapped = Fix::from_bits(0b1100 << (32 - 4)); assert_eq!(Fix::overflowing_from_num(large), (wrapped, true));
pub fn overflowing_to_num<Dst: FromFixed>(self) -> (Dst, bool)
[src]
Converts a fixed-point number to another number.
Returns a tuple of the number and a bool
indicating whether an
overflow has occurred. On overflow, the wrapped value is returned.
The other number can be:
- Another fixed-point number. Any extra fractional bits are discarded, which rounds towards −∞.
- An integer of type
i8
,i16
,i32
,i64
,i128
,isize
,u8
,u16
,u32
,u64
,u128
, orusize
. Any fractional bits are discarded, which rounds towards −∞. - A floating-point number of type
f32
orf64
. If thef16
feature is enabled, it can also be of typef16
orbf16
. For this conversion, the method rounds to the nearest, with ties rounding to even. - Any other type
Dst
for whichFromFixed
is implemented, in which case this method returnsDst::overflowing_from_fixed(self)
.
Examples
use fixed::{ types::extra::{U0, U4, U6}, types::I16F16, FixedI32, }; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let src = Fix::from_bits(0b111 << (4 - 2)); let expected = I16F16::from_bits(0b111 << (16 - 2)); assert_eq!(src.overflowing_to_num::<I16F16>(), (expected, false)); type TooFewIntBits = FixedI32<U6>; let wrapped = TooFewIntBits::from_bits(Fix::MAX.to_bits() << 2); assert_eq!(Fix::MAX.overflowing_to_num::<TooFewIntBits>(), (wrapped, true)); // 2.5 is 10.1 in binary let two_point_5 = Fix::from_bits(0b101 << (4 - 1)); assert_eq!(two_point_5.overflowing_to_num::<i32>(), (2, false)); let does_not_fit = FixedI32::<U0>::from_bits(-1); let wrapped = 1u32.wrapping_neg(); assert_eq!(does_not_fit.overflowing_to_num::<u32>(), (wrapped, true)); // 1.625 is 1.101 in binary let one_point_625 = Fix::from_bits(0b1101 << (4 - 3)); assert_eq!(one_point_625.overflowing_to_num::<f32>(), (1.625f32, false));
pub fn from_str_binary(src: &str) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
Parses a string slice containing binary digits to return a fixed-point number.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary let f = Fix::from_str_binary("1.11"); let check = Fix::from_bits(0b111 << (4 - 2)); assert_eq!(f, Ok(check)); let neg = Fix::from_str_binary("-1.11"); assert_eq!(neg, Ok(-check));
pub fn from_str_octal(src: &str) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
Parses a string slice containing octal digits to return a fixed-point number.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary, 1.6 in octal let f = Fix::from_str_octal("1.6"); let check = Fix::from_bits(0b111 << (4 - 2)); assert_eq!(f, Ok(check)); let neg = Fix::from_str_octal("-1.6"); assert_eq!(neg, Ok(-check));
pub fn from_str_hex(src: &str) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
Parses a string slice containing hexadecimal digits to return a fixed-point number.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; // 1.75 is 1.11 in binary, 1.C in hexadecimal let f = Fix::from_str_hex("1.C"); let check = Fix::from_bits(0b111 << (4 - 2)); assert_eq!(f, Ok(check)); let neg = Fix::from_str_hex("-1.C"); assert_eq!(neg, Ok(-check));
pub fn saturating_from_str(src: &str) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
Parses a string slice containing decimal digits to return a fixed-point number, saturating on overflow.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; assert_eq!(I8F8::saturating_from_str("9999"), Ok(I8F8::MAX)); assert_eq!(I8F8::saturating_from_str("-9999"), Ok(I8F8::MIN));
pub fn saturating_from_str_binary(
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
Parses a string slice containing binary digits to return a fixed-point number, saturating on overflow.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; assert_eq!(I8F8::saturating_from_str_binary("101100111000"), Ok(I8F8::MAX)); assert_eq!(I8F8::saturating_from_str_binary("-101100111000"), Ok(I8F8::MIN));
pub fn saturating_from_str_octal(
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
Parses a string slice containing octal digits to return a fixed-point number, saturating on overflow.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; assert_eq!(I8F8::saturating_from_str_octal("7777"), Ok(I8F8::MAX)); assert_eq!(I8F8::saturating_from_str_octal("-7777"), Ok(I8F8::MIN));
pub fn saturating_from_str_hex(
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
Prases a string slice containing hexadecimal digits to return a fixed-point number, saturating on overflow.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; assert_eq!(I8F8::saturating_from_str_hex("FFFF"), Ok(I8F8::MAX)); assert_eq!(I8F8::saturating_from_str_hex("-FFFF"), Ok(I8F8::MIN));
pub fn wrapping_from_str(src: &str) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
Parses a string slice containing decimal digits to return a fixed-point number, wrapping on overflow.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; // 9999.5 = 15.5 + 256 × n assert_eq!(I8F8::wrapping_from_str("9999.5"), Ok(I8F8::from_num(15.5))); assert_eq!(I8F8::wrapping_from_str("-9999.5"), Ok(I8F8::from_num(-15.5)));
pub fn wrapping_from_str_binary(
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
Parses a string slice containing binary digits to return a fixed-point number, wrapping on overflow.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; let check = I8F8::from_bits(0b1110001 << (8 - 1)); assert_eq!(I8F8::wrapping_from_str_binary("101100111000.1"), Ok(check)); assert_eq!(I8F8::wrapping_from_str_binary("-101100111000.1"), Ok(-check));
pub fn wrapping_from_str_octal(
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
Parses a string slice containing octal digits to return a fixed-point number, wrapping on overflow.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; let check = I8F8::from_bits(0o1654 << (8 - 3)); assert_eq!(I8F8::wrapping_from_str_octal("7165.4"), Ok(check)); assert_eq!(I8F8::wrapping_from_str_octal("-7165.4"), Ok(-check));
pub fn wrapping_from_str_hex(
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
[src]
src: &str
) -> Result<FixedI32<Frac>, ParseFixedError>
Parses a string slice containing hexadecimal digits to return a fixed-point number, wrapping on overflow.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; let check = I8F8::from_bits(0xFFE); assert_eq!(I8F8::wrapping_from_str_hex("C0F.FE"), Ok(check)); assert_eq!(I8F8::wrapping_from_str_hex("-C0F.FE"), Ok(-check));
pub fn overflowing_from_str(
src: &str
) -> Result<(FixedI32<Frac>, bool), ParseFixedError>
[src]
src: &str
) -> Result<(FixedI32<Frac>, bool), ParseFixedError>
Parses a string slice containing decimal digits to return a fixed-point number.
Returns a tuple of the fixed-point number and a bool
indicating
whether an overflow has occurred. On overflow, the wrapped value is
returned.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; assert_eq!(I8F8::overflowing_from_str("99.5"), Ok((I8F8::from_num(99.5), false))); // 9999.5 = 15.5 + 256 × n assert_eq!(I8F8::overflowing_from_str("-9999.5"), Ok((I8F8::from_num(-15.5), true)));
pub fn overflowing_from_str_binary(
src: &str
) -> Result<(FixedI32<Frac>, bool), ParseFixedError>
[src]
src: &str
) -> Result<(FixedI32<Frac>, bool), ParseFixedError>
Parses a string slice containing binary digits to return a fixed-point number.
Returns a tuple of the fixed-point number and a bool
indicating
whether an overflow has occurred. On overflow, the wrapped value is
returned.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; let check = I8F8::from_bits(0b1110001 << (8 - 1)); assert_eq!(I8F8::overflowing_from_str_binary("111000.1"), Ok((check, false))); assert_eq!(I8F8::overflowing_from_str_binary("-101100111000.1"), Ok((-check, true)));
pub fn overflowing_from_str_octal(
src: &str
) -> Result<(FixedI32<Frac>, bool), ParseFixedError>
[src]
src: &str
) -> Result<(FixedI32<Frac>, bool), ParseFixedError>
Parses a string slice containing octal digits to return a fixed-point number.
Returns a tuple of the fixed-point number and a bool
indicating
whether an overflow has occurred. On overflow, the wrapped value is
returned.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; let check = I8F8::from_bits(0o1654 << (8 - 3)); assert_eq!(I8F8::overflowing_from_str_octal("165.4"), Ok((check, false))); assert_eq!(I8F8::overflowing_from_str_octal("-7165.4"), Ok((-check, true)));
pub fn overflowing_from_str_hex(
src: &str
) -> Result<(FixedI32<Frac>, bool), ParseFixedError>
[src]
src: &str
) -> Result<(FixedI32<Frac>, bool), ParseFixedError>
Parses a string slice containing hexadecimal digits to return a fixed-point number.
Returns a tuple of the fixed-point number and a bool
indicating
whether an overflow has occurred. On overflow, the wrapped value is
returned.
Rounding is to the nearest, with ties rounded to even.
Examples
use fixed::types::I8F8; let check = I8F8::from_bits(0xFFE); assert_eq!(I8F8::overflowing_from_str_hex("F.FE"), Ok((check, false))); assert_eq!(I8F8::overflowing_from_str_hex("-C0F.FE"), Ok((-check, true)));
pub fn int(self) -> FixedI32<Frac>
[src]
Returns the integer part.
Note that since the numbers are stored in two’s
complement, negative numbers with non-zero fractional parts will be
rounded towards −∞, except in the case where there are no integer
bits, that is FixedI32<U32>
, where the return value is always zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; // 0010.0000 let two = Fix::from_num(2); // 0010.0100 let two_and_quarter = two + two / 8; assert_eq!(two_and_quarter.int(), two); // 1101.0000 let three = Fix::from_num(3); // 1101.1100 assert_eq!((-two_and_quarter).int(), -three);
pub fn frac(self) -> FixedI32<Frac>
[src]
Returns the fractional part.
Note that since the numbers are stored in two’s
complement, the returned fraction will be non-negative for negative
numbers, except in the case where there are no integer bits, that is
FixedI32<U32>
where the return value is always equal to
self
.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; // 0000.0100 let quarter = Fix::from_num(1) / 4; // 0010.0100 let two_and_quarter = quarter * 9; assert_eq!(two_and_quarter.frac(), quarter); // 0000.1100 let three_quarters = quarter * 3; // 1101.1100 assert_eq!((-two_and_quarter).frac(), three_quarters);
pub fn round_to_zero(self) -> FixedI32<Frac>
[src]
Rounds to the next integer towards 0.
Note that for negative numbers, this is different from truncating/discarding the fractional bits. This is because in two’s-complement representations, the value of all the bits except for the most significant bit is positive; discarding positive bits would round towards −∞ unlike this method which rounds towards zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.1).round_to_zero(), Fix::from_num(2)); assert_eq!(Fix::from_num(2.9).round_to_zero(), Fix::from_num(2)); assert_eq!(Fix::from_num(-2.1).round_to_zero(), Fix::from_num(-2)); assert_eq!(Fix::from_num(-2.9).round_to_zero(), Fix::from_num(-2));
pub fn ceil(self) -> FixedI32<Frac>
[src]
Rounds to the next integer towards +∞.
Panics
When debug assertions are enabled, panics if the result does not fit.
When debug assertions are not enabled, the wrapped result can be
returned, but it is not considered a breaking change if in the future
it panics; if wrapping is required use wrapping_ceil
instead.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).ceil(), Fix::from_num(3)); assert_eq!(Fix::from_num(-2.5).ceil(), Fix::from_num(-2));
pub fn floor(self) -> FixedI32<Frac>
[src]
Rounds to the next integer towards −∞.
Panics
When debug assertions are enabled, panics if the result does not fit.
When debug assertions are not enabled, the wrapped result can be
returned, but it is not considered a breaking change if in the future
it panics; if wrapping is required use wrapping_floor
instead.
Overflow can only occur when there are zero integer bits.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).floor(), Fix::from_num(2)); assert_eq!(Fix::from_num(-2.5).floor(), Fix::from_num(-3));
pub fn round(self) -> FixedI32<Frac>
[src]
Rounds to the nearest integer, with ties rounded away from zero.
Panics
When debug assertions are enabled, panics if the result does not fit.
When debug assertions are not enabled, the wrapped result can be
returned, but it is not considered a breaking change if in the future
it panics; if wrapping is required use wrapping_round
instead.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).round(), Fix::from_num(3)); assert_eq!(Fix::from_num(-2.5).round(), Fix::from_num(-3));
pub fn round_ties_to_even(self) -> FixedI32<Frac>
[src]
Rounds to the nearest integer, with ties rounded to even.
Panics
When debug assertions are enabled, panics if the result does not fit.
When debug assertions are not enabled, the wrapped result can be
returned, but it is not considered a breaking change if in the future
it panics; if wrapping is required use wrapping_round_ties_to_even
instead.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).round_ties_to_even(), Fix::from_num(2)); assert_eq!(Fix::from_num(3.5).round_ties_to_even(), Fix::from_num(4));
pub fn checked_ceil(self) -> Option<FixedI32<Frac>>
[src]
Checked ceil. Rounds to the next integer towards +∞,
returning None
on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).checked_ceil(), Some(Fix::from_num(3))); assert_eq!(Fix::from_num(-2.5).checked_ceil(), Some(Fix::from_num(-2))); assert!(Fix::MAX.checked_ceil().is_none());
pub fn checked_floor(self) -> Option<FixedI32<Frac>>
[src]
Checked floor. Rounds to the next integer towards −∞.Returns None
on overflow.
Overflow can only occur when there are zero integer bits.
Examples
use fixed::{ types::extra::{U4, U32}, FixedI32, }; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).checked_floor(), Some(Fix::from_num(2))); assert_eq!(Fix::from_num(-2.5).checked_floor(), Some(Fix::from_num(-3))); type AllFrac = FixedI32<U32>; assert!(AllFrac::MIN.checked_floor().is_none());
pub fn checked_round(self) -> Option<FixedI32<Frac>>
[src]
Checked round. Rounds to the nearest integer, with ties
rounded away from zero, returning None
on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).checked_round(), Some(Fix::from_num(3))); assert_eq!(Fix::from_num(-2.5).checked_round(), Some(Fix::from_num(-3))); assert!(Fix::MAX.checked_round().is_none());
pub fn checked_round_ties_to_even(self) -> Option<FixedI32<Frac>>
[src]
Checked round. Rounds to the nearest integer, with ties
rounded to even, returning None
on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).checked_round_ties_to_even(), Some(Fix::from_num(2))); assert_eq!(Fix::from_num(3.5).checked_round_ties_to_even(), Some(Fix::from_num(4))); assert!(Fix::MAX.checked_round_ties_to_even().is_none());
pub fn saturating_ceil(self) -> FixedI32<Frac>
[src]
Saturating ceil. Rounds to the next integer towards +∞, saturating on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).saturating_ceil(), Fix::from_num(3)); assert_eq!(Fix::from_num(-2.5).saturating_ceil(), Fix::from_num(-2)); assert_eq!(Fix::MAX.saturating_ceil(), Fix::MAX);
pub fn saturating_floor(self) -> FixedI32<Frac>
[src]
Saturating floor. Rounds to the next integer towards −∞, saturating on overflow.
Overflow can only occur when there are zero integer bits.
Examples
use fixed::{ types::extra::{U4, U32}, FixedI32, }; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).saturating_floor(), Fix::from_num(2)); assert_eq!(Fix::from_num(-2.5).saturating_floor(), Fix::from_num(-3)); type AllFrac = FixedI32<U32>; assert_eq!(AllFrac::MIN.saturating_floor(), AllFrac::MIN);
pub fn saturating_round(self) -> FixedI32<Frac>
[src]
Saturating round. Rounds to the nearest integer, with ties rounded away from zero, and saturating on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).saturating_round(), Fix::from_num(3)); assert_eq!(Fix::from_num(-2.5).saturating_round(), Fix::from_num(-3)); assert_eq!(Fix::MAX.saturating_round(), Fix::MAX);
pub fn saturating_round_ties_to_even(self) -> FixedI32<Frac>
[src]
Saturating round. Rounds to the nearest integer, with ties rounded to even, and saturating on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).saturating_round_ties_to_even(), Fix::from_num(2)); assert_eq!(Fix::from_num(3.5).saturating_round_ties_to_even(), Fix::from_num(4)); assert_eq!(Fix::MAX.saturating_round_ties_to_even(), Fix::MAX);
pub fn wrapping_ceil(self) -> FixedI32<Frac>
[src]
Wrapping ceil. Rounds to the next integer towards +∞, wrapping on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).wrapping_ceil(), Fix::from_num(3)); assert_eq!(Fix::from_num(-2.5).wrapping_ceil(), Fix::from_num(-2)); assert_eq!(Fix::MAX.wrapping_ceil(), Fix::MIN);
pub fn wrapping_floor(self) -> FixedI32<Frac>
[src]
Wrapping floor. Rounds to the next integer towards −∞, wrapping on overflow.
Overflow can only occur when there are zero integer bits.
Examples
use fixed::{ types::extra::{U4, U32}, FixedI32, }; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).wrapping_floor(), Fix::from_num(2)); assert_eq!(Fix::from_num(-2.5).wrapping_floor(), Fix::from_num(-3)); type AllFrac = FixedI32<U32>; assert_eq!(AllFrac::MIN.wrapping_floor(), AllFrac::from_num(0));
pub fn wrapping_round(self) -> FixedI32<Frac>
[src]
Wrapping round. Rounds to the next integer to the nearest, with ties rounded away from zero, and wrapping on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).wrapping_round(), Fix::from_num(3)); assert_eq!(Fix::from_num(-2.5).wrapping_round(), Fix::from_num(-3)); assert_eq!(Fix::MAX.wrapping_round(), Fix::MIN);
pub fn wrapping_round_ties_to_even(self) -> FixedI32<Frac>
[src]
Wrapping round. Rounds to the next integer to the nearest, with ties rounded to even, and wrapping on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).wrapping_round_ties_to_even(), Fix::from_num(2)); assert_eq!(Fix::from_num(3.5).wrapping_round_ties_to_even(), Fix::from_num(4)); assert_eq!(Fix::MAX.wrapping_round_ties_to_even(), Fix::MIN);
pub fn overflowing_ceil(self) -> (FixedI32<Frac>, bool)
[src]
Overflowing ceil. Rounds to the next integer towards +∞.
Returns a tuple of the fixed-point number and a bool
, indicating
whether an overflow has occurred. On overflow, the wrapped value is
returned.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).overflowing_ceil(), (Fix::from_num(3), false)); assert_eq!(Fix::from_num(-2.5).overflowing_ceil(), (Fix::from_num(-2), false)); assert_eq!(Fix::MAX.overflowing_ceil(), (Fix::MIN, true));
pub fn overflowing_floor(self) -> (FixedI32<Frac>, bool)
[src]
Overflowing floor. Rounds to the next integer towards −∞.
Returns a tuple of the fixed-point number and
a bool
, indicating whether an overflow has
occurred. On overflow, the wrapped value isreturned. Overflow can only
occur when there are zero integer bits.
Examples
use fixed::{ types::extra::{U4, U32}, FixedI32, }; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).overflowing_floor(), (Fix::from_num(2), false)); assert_eq!(Fix::from_num(-2.5).overflowing_floor(), (Fix::from_num(-3), false)); type AllFrac = FixedI32<U32>; assert_eq!(AllFrac::MIN.overflowing_floor(), (AllFrac::from_num(0), true));
pub fn overflowing_round(self) -> (FixedI32<Frac>, bool)
[src]
Overflowing round. Rounds to the next integer to the nearest, with ties rounded away from zero.
Returns a tuple of the fixed-point number and a bool
indicating
whether an overflow has occurred. On overflow, the wrapped value is
returned.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).overflowing_round(), (Fix::from_num(3), false)); assert_eq!(Fix::from_num(-2.5).overflowing_round(), (Fix::from_num(-3), false)); assert_eq!(Fix::MAX.overflowing_round(), (Fix::MIN, true));
pub fn overflowing_round_ties_to_even(self) -> (FixedI32<Frac>, bool)
[src]
Overflowing round. Rounds to the next integer to the nearest, with ties rounded to even.
Returns a tuple of the fixed-point number and a bool
indicating
whether an overflow has occurred. On overflow, the wrapped value is
returned.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(2.5).overflowing_round_ties_to_even(), (Fix::from_num(2), false)); assert_eq!(Fix::from_num(3.5).overflowing_round_ties_to_even(), (Fix::from_num(4), false)); assert_eq!(Fix::MAX.overflowing_round_ties_to_even(), (Fix::MIN, true));
pub fn int_log2(self) -> i32
[src]
Integer base-2 logarithm, rounded down.
Panics
Panics if the fixed-point number is ≤ 0.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(4).int_log2(), 2); assert_eq!(Fix::from_num(3.9375).int_log2(), 1); assert_eq!(Fix::from_num(0.25).int_log2(), -2); assert_eq!(Fix::from_num(0.1875).int_log2(), -3);
pub fn int_log10(self) -> i32
[src]
Integer base-10 logarithm, rounded down.
Panics
Panics if the fixed-point number is ≤ 0.
Examples
use fixed::{ types::extra::{U2, U6}, FixedI32, }; assert_eq!(FixedI32::<U2>::from_num(10).int_log10(), 1); assert_eq!(FixedI32::<U2>::from_num(9.75).int_log10(), 0); assert_eq!(FixedI32::<U6>::from_num(0.109375).int_log10(), -1); assert_eq!(FixedI32::<U6>::from_num(0.09375).int_log10(), -2);
pub fn checked_int_log2(self) -> Option<i32>
[src]
Checked integer base-2 logarithm, rounded down.
Returns the logarithm or None
if the fixed-point number is
≤ 0.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(0).checked_int_log2(), None); assert_eq!(Fix::from_num(4).checked_int_log2(), Some(2)); assert_eq!(Fix::from_num(3.9375).checked_int_log2(), Some(1)); assert_eq!(Fix::from_num(0.25).checked_int_log2(), Some(-2)); assert_eq!(Fix::from_num(0.1875).checked_int_log2(), Some(-3));
pub fn checked_int_log10(self) -> Option<i32>
[src]
Checked integer base-10 logarithm, rounded down.
Returns the logarithm or None
if the fixed-point number is
≤ 0.
Examples
use fixed::{ types::extra::{U2, U6}, FixedI32, }; assert_eq!(FixedI32::<U2>::from_num(0).checked_int_log10(), None); assert_eq!(FixedI32::<U2>::from_num(10).checked_int_log10(), Some(1)); assert_eq!(FixedI32::<U2>::from_num(9.75).checked_int_log10(), Some(0)); assert_eq!(FixedI32::<U6>::from_num(0.109375).checked_int_log10(), Some(-1)); assert_eq!(FixedI32::<U6>::from_num(0.09375).checked_int_log10(), Some(-2));
pub fn signum(self) -> FixedI32<Frac>
[src]
Returns a number representing the sign of self
.
Panics
When debug assertions are enabled, this method panics
- if the value is positive and the fixed-point number has zero or one integer bits such that it cannot hold the value 1.
- if the value is negative and the fixed-point number has zero integer bits, such that it cannot hold the value −1.
When debug assertions are not enabled, the wrapped value can be returned in those cases, but it is not considered a breaking change if in the future it panics; using this method when 1 and −1 cannot be represented is almost certainly a bug.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(5).signum(), 1); assert_eq!(Fix::from_num(0).signum(), 0); assert_eq!(Fix::from_num(-5).signum(), -1);
pub fn div_euclid(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Euclidean division.
Panics
Panics if the divisor is zero.
When debug assertions are enabled, this method also panics if the
division overflows. When debug assertions are not enabled, the wrapped
value can be returned, but it is not considered a breaking change if
in the future it panics; if wrapping is required use
wrapping_div_euclid
instead.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).div_euclid(Fix::from_num(2)), Fix::from_num(3)); assert_eq!(Fix::from_num(-7.5).div_euclid(Fix::from_num(2)), Fix::from_num(-4));
pub fn div_euclid_int(self, rhs: i32) -> FixedI32<Frac>
[src]
Euclidean division by an integer.
Panics
Panics if the divisor is zero.
When debug assertions are enabled, this method
also panics if the division overflows. Overflow can only occur when
dividing the minimum value by −1. When debug assertions are not
enabled, the wrapped value can be returned, but it is not considered a
breaking change if in the future it panics; if wrapping is required
use wrapping_div_euclid_int
instead.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).div_euclid_int(2), Fix::from_num(3)); assert_eq!(Fix::from_num(-7.5).div_euclid_int(2), Fix::from_num(-4));
pub fn rem_euclid_int(self, rhs: i32) -> FixedI32<Frac>
[src]
Remainder for Euclidean division by an integer.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).rem_euclid_int(2), Fix::from_num(1.5)); assert_eq!(Fix::from_num(-7.5).rem_euclid_int(2), Fix::from_num(0.5));
pub fn checked_signum(self) -> Option<FixedI32<Frac>>
[src]
Checked signum. Returns a number representing the
sign of self
, or None
on overflow.
Overflow can only occur
- if the value is positive and the fixed-point number has zero or one integer bits such that it cannot hold the value 1.
- if the value is negative and the fixed-point number has zero integer bits, such that it cannot hold the value −1.
Examples
use fixed::{ types::extra::{U4, U31, U32}, FixedI32, }; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(5).checked_signum(), Some(Fix::from_num(1))); assert_eq!(Fix::from_num(0).checked_signum(), Some(Fix::from_num(0))); assert_eq!(Fix::from_num(-5).checked_signum(), Some(Fix::from_num(-1))); type OneIntBit = FixedI32<U31>; type ZeroIntBits = FixedI32<U32>; assert_eq!(OneIntBit::from_num(0.5).checked_signum(), None); assert_eq!(ZeroIntBits::from_num(0.25).checked_signum(), None); assert_eq!(ZeroIntBits::from_num(-0.5).checked_signum(), None);
pub fn checked_mul(self, rhs: FixedI32<Frac>) -> Option<FixedI32<Frac>>
[src]
Checked multiplication. Returns the product, or None
on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::MAX.checked_mul(Fix::from_num(1)), Some(Fix::MAX)); assert_eq!(Fix::MAX.checked_mul(Fix::from_num(2)), None);
pub fn checked_div(self, rhs: FixedI32<Frac>) -> Option<FixedI32<Frac>>
[src]
Checked division. Returns the quotient, or None
if
the divisor is zero or on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::MAX.checked_div(Fix::from_num(1)), Some(Fix::MAX)); assert_eq!(Fix::MAX.checked_div(Fix::from_num(1) / 2), None);
pub fn checked_div_euclid(self, rhs: FixedI32<Frac>) -> Option<FixedI32<Frac>>
[src]
Checked Euclidean division. Returns the quotient, or
None
if the divisor is zero or on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).checked_div_euclid(Fix::from_num(2)), Some(Fix::from_num(3))); assert_eq!(Fix::from_num(7.5).checked_div_euclid(Fix::from_num(0)), None); assert_eq!(Fix::MAX.checked_div_euclid(Fix::from_num(0.25)), None); assert_eq!(Fix::from_num(-7.5).checked_div_euclid(Fix::from_num(2)), Some(Fix::from_num(-4)));
pub fn checked_rem_int(self, rhs: i32) -> Option<FixedI32<Frac>>
[src]
Checked fixed-point remainder for division by an integer.
Returns the remainder, or None
if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(3.75).checked_rem_int(2), Some(Fix::from_num(1.75))); assert_eq!(Fix::from_num(3.75).checked_rem_int(0), None); assert_eq!(Fix::from_num(-3.75).checked_rem_int(2), Some(Fix::from_num(-1.75)));
pub fn checked_div_euclid_int(self, rhs: i32) -> Option<FixedI32<Frac>>
[src]
Checked Euclidean division by an integer. Returns the
quotient, or None
if the divisor is zero or if the division results in overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).checked_div_euclid_int(2), Some(Fix::from_num(3))); assert_eq!(Fix::from_num(7.5).checked_div_euclid_int(0), None); assert_eq!(Fix::MIN.checked_div_euclid_int(-1), None);
pub fn checked_rem_euclid_int(self, rhs: i32) -> Option<FixedI32<Frac>>
[src]
Checked remainder for Euclidean division by an integer.
Returns the remainder, or None
if the divisor is zero or if the remainder results in overflow.
Examples
use fixed::{types::extra::U28, FixedI32}; type Fix = FixedI32<U28>; assert_eq!(Fix::from_num(7.5).checked_rem_euclid_int(2), Some(Fix::from_num(1.5))); assert_eq!(Fix::from_num(7.5).checked_rem_euclid_int(0), None); assert_eq!(Fix::from_num(-7.5).checked_rem_euclid_int(2), Some(Fix::from_num(0.5))); // −8 ≤ Fix < 8, so the answer 12.5 overflows assert_eq!(Fix::from_num(-7.5).checked_rem_euclid_int(20), None);
pub fn saturating_signum(self) -> FixedI32<Frac>
[src]
Saturating signum. Returns a number representing
the sign of self
, saturating on overflow.
Overflow can only occur
- if the value is positive and the fixed-point number has zero or one integer bits such that it cannot hold the value 1.
- if the value is negative and the fixed-point number has zero integer bits, such that it cannot hold the value −1.
Examples
use fixed::{ types::extra::{U4, U31, U32}, FixedI32, }; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(5).saturating_signum(), 1); assert_eq!(Fix::from_num(0).saturating_signum(), 0); assert_eq!(Fix::from_num(-5).saturating_signum(), -1); type OneIntBit = FixedI32<U31>; type ZeroIntBits = FixedI32<U32>; assert_eq!(OneIntBit::from_num(0.5).saturating_signum(), OneIntBit::MAX); assert_eq!(ZeroIntBits::from_num(0.25).saturating_signum(), ZeroIntBits::MAX); assert_eq!(ZeroIntBits::from_num(-0.5).saturating_signum(), ZeroIntBits::MIN);
pub fn saturating_mul(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Saturating multiplication. Returns the product, saturating on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(3).saturating_mul(Fix::from_num(2)), Fix::from_num(6)); assert_eq!(Fix::MAX.saturating_mul(Fix::from_num(2)), Fix::MAX);
pub fn saturating_div(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Saturating division. Returns the quotient, saturating on overflow.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let one_half = Fix::from_num(1) / 2; assert_eq!(Fix::from_num(1).saturating_div(Fix::from_num(2)), one_half); assert_eq!(Fix::MAX.saturating_div(one_half), Fix::MAX);
pub fn saturating_div_euclid(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Saturating Euclidean division. Returns the quotient, saturating on overflow.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).saturating_div_euclid(Fix::from_num(2)), Fix::from_num(3)); assert_eq!(Fix::MAX.saturating_div_euclid(Fix::from_num(0.25)), Fix::MAX); assert_eq!(Fix::from_num(-7.5).saturating_div_euclid(Fix::from_num(2)), Fix::from_num(-4)); assert_eq!(Fix::MIN.saturating_div_euclid(Fix::from_num(0.25)), Fix::MIN);
pub fn wrapping_signum(self) -> FixedI32<Frac>
[src]
Wrapping signum. Returns a number representing
the sign of self
, wrapping on overflow.
Overflow can only occur
- if the value is positive and the fixed-point number has zero or one integer bits such that it cannot hold the value 1.
- if the value is negative and the fixed-point number has zero integer bits, such that it cannot hold the value −1.
Examples
use fixed::{ types::extra::{U4, U31, U32}, FixedI32, }; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(5).wrapping_signum(), 1); assert_eq!(Fix::from_num(0).wrapping_signum(), 0); assert_eq!(Fix::from_num(-5).wrapping_signum(), -1); type OneIntBit = FixedI32<U31>; type ZeroIntBits = FixedI32<U32>; assert_eq!(OneIntBit::from_num(0.5).wrapping_signum(), -1); assert_eq!(ZeroIntBits::from_num(0.25).wrapping_signum(), 0); assert_eq!(ZeroIntBits::from_num(-0.5).wrapping_signum(), 0);
pub fn wrapping_mul(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Wrapping multiplication. Returns the product, wrapping on overflow.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(3).wrapping_mul(Fix::from_num(2)), Fix::from_num(6)); let wrapped = Fix::from_bits(!0 << 2); assert_eq!(Fix::MAX.wrapping_mul(Fix::from_num(4)), wrapped);
pub fn wrapping_div(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Wrapping division. Returns the quotient, wrapping on overflow.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let one_point_5 = Fix::from_bits(0b11 << (4 - 1)); assert_eq!(Fix::from_num(3).wrapping_div(Fix::from_num(2)), one_point_5); let quarter = Fix::from_num(1) / 4; let wrapped = Fix::from_bits(!0 << 2); assert_eq!(Fix::MAX.wrapping_div(quarter), wrapped);
pub fn wrapping_div_euclid(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
Wrapping Euclidean division. Returns the quotient, wrapping on overflow.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).wrapping_div_euclid(Fix::from_num(2)), Fix::from_num(3)); let wrapped = Fix::MAX.wrapping_mul_int(4).round_to_zero(); assert_eq!(Fix::MAX.wrapping_div_euclid(Fix::from_num(0.25)), wrapped);
pub fn wrapping_div_euclid_int(self, rhs: i32) -> FixedI32<Frac>
[src]
Wrapping Euclidean division by an integer. Returns the quotient, wrapping on overflow.
Overflow can only occur when dividing the minimum value by −1.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).wrapping_div_euclid_int(2), Fix::from_num(3)); assert_eq!(Fix::from_num(-7.5).wrapping_div_euclid_int(2), Fix::from_num(-4)); let wrapped = Fix::MIN.round_to_zero(); assert_eq!(Fix::MIN.wrapping_div_euclid_int(-1), wrapped);
pub fn wrapping_rem_euclid_int(self, rhs: i32) -> FixedI32<Frac>
[src]
Wrapping remainder for Euclidean division by an integer. Returns the remainder, wrapping on overflow.
Note that while remainder for Euclidean division cannot be negative, the wrapped value can be negative.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U28, FixedI32}; type Fix = FixedI32<U28>; assert_eq!(Fix::from_num(7.5).wrapping_rem_euclid_int(2), Fix::from_num(1.5)); assert_eq!(Fix::from_num(-7.5).wrapping_rem_euclid_int(2), Fix::from_num(0.5)); // −8 ≤ Fix < 8, so the answer 12.5 wraps to −3.5 assert_eq!(Fix::from_num(-7.5).wrapping_rem_euclid_int(20), Fix::from_num(-3.5));
pub fn overflowing_signum(self) -> (FixedI32<Frac>, bool)
[src]
Overflowing signum.
Returns a tuple of the signum and a bool
indicating whether an
overflow has occurred. On overflow, the wrapped value is returned.
Overflow can only occur
- if the value is positive and the fixed-point number has zero or one integer bits such that it cannot hold the value 1.
- if the value is negative and the fixed-point number has zero integer bits, such that it cannot hold the value −1.
Examples
use fixed::{ types::extra::{U4, U31, U32}, FixedI32, }; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(5).overflowing_signum(), (Fix::from_num(1), false)); assert_eq!(Fix::from_num(0).overflowing_signum(), (Fix::from_num(0), false)); assert_eq!(Fix::from_num(-5).overflowing_signum(), (Fix::from_num(-1), false)); type OneIntBit = FixedI32<U31>; type ZeroIntBits = FixedI32<U32>; assert_eq!(OneIntBit::from_num(0.5).overflowing_signum(), (OneIntBit::from_num(-1), true)); assert_eq!(ZeroIntBits::from_num(0.25).overflowing_signum(), (ZeroIntBits::from_num(0), true)); assert_eq!(ZeroIntBits::from_num(-0.5).overflowing_signum(), (ZeroIntBits::from_num(0), true));
pub fn overflowing_mul(self, rhs: FixedI32<Frac>) -> (FixedI32<Frac>, bool)
[src]
Overflowing multiplication.
Returns a tuple of the product and a bool
indicating whether an
overflow has occurred. On overflow, the wrapped value is returned.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(3).overflowing_mul(Fix::from_num(2)), (Fix::from_num(6), false)); let wrapped = Fix::from_bits(!0 << 2); assert_eq!(Fix::MAX.overflowing_mul(Fix::from_num(4)), (wrapped, true));
pub fn overflowing_div(self, rhs: FixedI32<Frac>) -> (FixedI32<Frac>, bool)
[src]
Overflowing division.
Returns a tuple of the quotient and a bool
indicating whether an
overflow has occurred. On overflow, the wrapped value is returned.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let one_point_5 = Fix::from_bits(0b11 << (4 - 1)); assert_eq!(Fix::from_num(3).overflowing_div(Fix::from_num(2)), (one_point_5, false)); let quarter = Fix::from_num(1) / 4; let wrapped = Fix::from_bits(!0 << 2); assert_eq!(Fix::MAX.overflowing_div(quarter), (wrapped, true));
pub fn overflowing_div_euclid(
self,
rhs: FixedI32<Frac>
) -> (FixedI32<Frac>, bool)
[src]
self,
rhs: FixedI32<Frac>
) -> (FixedI32<Frac>, bool)
Overflowing Euclidean division.
Returns a tuple of the quotient and a bool
indicating whether an
overflow has occurred. On overflow, the wrapped value is returned.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; let check = Fix::from_num(3); assert_eq!(Fix::from_num(7.5).overflowing_div_euclid(Fix::from_num(2)), (check, false)); let wrapped = Fix::MAX.wrapping_mul_int(4).round_to_zero(); assert_eq!(Fix::MAX.overflowing_div_euclid(Fix::from_num(0.25)), (wrapped, true));
pub fn overflowing_div_euclid_int(self, rhs: i32) -> (FixedI32<Frac>, bool)
[src]
Overflowing Euclidean division by an integer.
Returns a tuple of the quotient and a bool
indicating whether an overflow has
occurred. On overflow, the wrapped value is returned. Overflow can
only occur when dividing the minimum value by −1.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U4, FixedI32}; type Fix = FixedI32<U4>; assert_eq!(Fix::from_num(7.5).overflowing_div_euclid_int(2), (Fix::from_num(3), false)); assert_eq!(Fix::from_num(-7.5).overflowing_div_euclid_int(2), (Fix::from_num(-4), false)); let wrapped = Fix::MIN.round_to_zero(); assert_eq!(Fix::MIN.overflowing_div_euclid_int(-1), (wrapped, true));
pub fn overflowing_rem_euclid_int(self, rhs: i32) -> (FixedI32<Frac>, bool)
[src]
Remainder for Euclidean division by an integer.
Returns a tuple of the remainder and a bool
indicating whether an overflow has
occurred. On overflow, the wrapped value is returned.
Note that while remainder for Euclidean division cannot be negative, the wrapped value can be negative.
Panics
Panics if the divisor is zero.
Examples
use fixed::{types::extra::U28, FixedI32}; type Fix = FixedI32<U28>; assert_eq!(Fix::from_num(7.5).overflowing_rem_euclid_int(2), (Fix::from_num(1.5), false)); assert_eq!(Fix::from_num(-7.5).overflowing_rem_euclid_int(2), (Fix::from_num(0.5), false)); // −8 ≤ Fix < 8, so the answer 12.5 wraps to −3.5 assert_eq!(Fix::from_num(-7.5).overflowing_rem_euclid_int(20), (Fix::from_num(-3.5), true));
pub fn int_nbits() -> u32
[src]
use INT_NBITS
instead
Returns the number of integer bits.
pub fn frac_nbits() -> u32
[src]
use FRAC_NBITS
instead
Returns the number of fractional bits.
pub fn wrapping_rem_int(self, rhs: i32) -> FixedI32<Frac>
[src]
cannot overflow, use %
or Rem::rem
instead
pub fn overflowing_rem_int(self, rhs: i32) -> (FixedI32<Frac>, bool)
[src]
cannot overflow, use %
or Rem::rem
instead
impl<Frac: LeEqU32> FixedI32<Frac>
[src]
This block contains constants in the range 0 ≤ x < 0.5.
Examples
use fixed::{consts, types::extra::U32, FixedI32}; type Fix = FixedI32<U32>; assert_eq!(Fix::LOG10_2, Fix::from_num(consts::LOG10_2));
pub const FRAC_1_TAU: FixedI32<Frac>
[src]
1/τ = 0.159154…
pub const FRAC_2_TAU: FixedI32<Frac>
[src]
2/τ = 0.318309…
pub const FRAC_PI_8: FixedI32<Frac>
[src]
π/8 = 0.392699…
pub const FRAC_1_PI: FixedI32<Frac>
[src]
1/π = 0.318309…
pub const LOG10_2: FixedI32<Frac>
[src]
log10 2 = 0.301029…
pub const LOG10_E: FixedI32<Frac>
[src]
log10 e = 0.434294…
impl<Frac: Unsigned> FixedI32<Frac> where
Frac: IsLessOrEqual<U31, Output = True>,
[src]
Frac: IsLessOrEqual<U31, Output = True>,
This block contains constants in the range 0.5 ≤ x < 1.
These constants are not representable in signed fixed-point numbers with less than 1 integer bit.
Examples
use fixed::{consts, types::extra::U31, FixedI32}; type Fix = FixedI32<U31>; assert_eq!(Fix::LN_2, Fix::from_num(consts::LN_2)); assert!(0.5 <= Fix::LN_2 && Fix::LN_2 < 1);
The following example fails to compile, since the maximum representable value with 32 fractional bits and 0 integer bits is < 0.5.
use fixed::{consts, types::extra::U32, FixedI32}; type Fix = FixedI32<U32>; let _ = Fix::LN_2;
pub const FRAC_TAU_8: FixedI32<Frac>
[src]
τ/8 = 0.785398…
pub const FRAC_TAU_12: FixedI32<Frac>
[src]
τ/12 = 0.523598…
pub const FRAC_4_TAU: FixedI32<Frac>
[src]
4/τ = 0.636619…
pub const FRAC_PI_4: FixedI32<Frac>
[src]
π/4 = 0.785398…
pub const FRAC_PI_6: FixedI32<Frac>
[src]
π/6 = 0.523598…
pub const FRAC_2_PI: FixedI32<Frac>
[src]
2/π = 0.636619…
pub const FRAC_1_SQRT_2: FixedI32<Frac>
[src]
1/√2 = 0.707106…
pub const LN_2: FixedI32<Frac>
[src]
ln 2 = 0.693147…
pub const FRAC_1_PHI: FixedI32<Frac>
[src]
The golden ratio conjugate, Φ = 1/φ = 0.618033…
impl<Frac: Unsigned> FixedI32<Frac> where
Frac: IsLessOrEqual<U30, Output = True>,
[src]
Frac: IsLessOrEqual<U30, Output = True>,
This block contains constants in the range 1 ≤ x < 2.
These constants are not representable in signed fixed-point numbers with less than 2 integer bits.
Examples
use fixed::{consts, types::extra::U30, FixedI32}; type Fix = FixedI32<U30>; assert_eq!(Fix::LOG2_E, Fix::from_num(consts::LOG2_E)); assert!(1 <= Fix::LOG2_E && Fix::LOG2_E < 2);
The following example fails to compile, since the maximum representable value with 31 fractional bits and 1 integer bit is < 1.
use fixed::{consts, types::extra::U31, FixedI32}; type Fix = FixedI32<U31>; let _ = Fix::LOG2_E;
pub const FRAC_TAU_4: FixedI32<Frac>
[src]
τ/4 = 1.57079…
pub const FRAC_TAU_6: FixedI32<Frac>
[src]
τ/6 = 1.04719…
pub const FRAC_PI_2: FixedI32<Frac>
[src]
π/2 = 1.57079…
pub const FRAC_PI_3: FixedI32<Frac>
[src]
π/3 = 1.04719…
pub const FRAC_2_SQRT_PI: FixedI32<Frac>
[src]
2/√π = 1.12837…
pub const SQRT_2: FixedI32<Frac>
[src]
√2 = 1.41421…
pub const LOG2_E: FixedI32<Frac>
[src]
log2 e = 1.44269…
pub const PHI: FixedI32<Frac>
[src]
The golden ratio, φ = 1.61803…
impl<Frac: Unsigned> FixedI32<Frac> where
Frac: IsLessOrEqual<U29, Output = True>,
[src]
Frac: IsLessOrEqual<U29, Output = True>,
This block contains constants in the range 2 ≤ x < 4.
These constants are not representable in signed fixed-point numbers with less than 3 integer bits.
Examples
use fixed::{consts, types::extra::U29, FixedI32}; type Fix = FixedI32<U29>; assert_eq!(Fix::E, Fix::from_num(consts::E)); assert!(2 <= Fix::E && Fix::E < 4);
The following example fails to compile, since the maximum representable value with 30 fractional bits and 2 integer bits is < 2.
use fixed::{consts, types::extra::U30, FixedI32}; type Fix = FixedI32<U30>; let _ = Fix::E;
pub const FRAC_TAU_2: FixedI32<Frac>
[src]
τ/2 = 3.14159…
pub const FRAC_TAU_3: FixedI32<Frac>
[src]
τ/3 = 2.09439…
pub const PI: FixedI32<Frac>
[src]
Archimedes’ constant, π = 3.14159…
pub const E: FixedI32<Frac>
[src]
Euler’s number, e = 2.71828…
pub const LOG2_10: FixedI32<Frac>
[src]
log2 10 = 3.32192…
pub const LN_10: FixedI32<Frac>
[src]
ln 10 = 2.30258…
impl<Frac: Unsigned> FixedI32<Frac> where
Frac: IsLessOrEqual<U28, Output = True>,
[src]
Frac: IsLessOrEqual<U28, Output = True>,
This block contains constants in the range 4 ≤ x < 8.
These constants are not representable in signed fixed-point numbers with less than 4 integer bits.
Examples
use fixed::{consts, types::extra::U28, FixedI32}; type Fix = FixedI32<U28>; assert_eq!(Fix::TAU, Fix::from_num(consts::TAU)); assert!(4 <= Fix::TAU && Fix::TAU < 8);
The following example fails to compile, since the maximum representable value with 29 fractional bits and 3 integer bits is < 4.
use fixed::{consts, types::extra::U29, FixedI32}; type Fix = FixedI32<U29>; let _ = Fix::TAU;
Trait Implementations
impl<'a, Frac> Add<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the +
operator.
fn add(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Add<&'a FixedI32<Frac>> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the +
operator.
fn add(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<Frac> Add<FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the +
operator.
fn add(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> Add<FixedI32<Frac>> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the +
operator.
fn add(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> AddAssign<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
fn add_assign(&mut self, rhs: &FixedI32<Frac>)
[src]
impl<Frac> AddAssign<FixedI32<Frac>> for FixedI32<Frac>
[src]
fn add_assign(&mut self, rhs: FixedI32<Frac>)
[src]
impl<Frac: LeEqU32> Binary for FixedI32<Frac>
[src]
impl<'a, Frac> BitAnd<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the &
operator.
fn bitand(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> BitAnd<&'a FixedI32<Frac>> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the &
operator.
fn bitand(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<Frac> BitAnd<FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the &
operator.
fn bitand(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> BitAnd<FixedI32<Frac>> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the &
operator.
fn bitand(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> BitAndAssign<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
fn bitand_assign(&mut self, rhs: &FixedI32<Frac>)
[src]
impl<Frac> BitAndAssign<FixedI32<Frac>> for FixedI32<Frac>
[src]
fn bitand_assign(&mut self, rhs: FixedI32<Frac>)
[src]
impl<'a, Frac> BitOr<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the |
operator.
fn bitor(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> BitOr<&'a FixedI32<Frac>> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the |
operator.
fn bitor(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<Frac> BitOr<FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the |
operator.
fn bitor(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> BitOr<FixedI32<Frac>> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the |
operator.
fn bitor(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> BitOrAssign<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
fn bitor_assign(&mut self, rhs: &FixedI32<Frac>)
[src]
impl<Frac> BitOrAssign<FixedI32<Frac>> for FixedI32<Frac>
[src]
fn bitor_assign(&mut self, rhs: FixedI32<Frac>)
[src]
impl<'a, Frac> BitXor<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the ^
operator.
fn bitxor(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> BitXor<&'a FixedI32<Frac>> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the ^
operator.
fn bitxor(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<Frac> BitXor<FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the ^
operator.
fn bitxor(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> BitXor<FixedI32<Frac>> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the ^
operator.
fn bitxor(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> BitXorAssign<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
fn bitxor_assign(&mut self, rhs: &FixedI32<Frac>)
[src]
impl<Frac> BitXorAssign<FixedI32<Frac>> for FixedI32<Frac>
[src]
fn bitxor_assign(&mut self, rhs: FixedI32<Frac>)
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> Cast<FixedI128<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> Cast<FixedI16<FracDst>> for FixedI32<FracSrc>
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for bool
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for i8
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for u64
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for u128
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for usize
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for f32
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for f64
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for f16
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for bf16
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for i16
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for i32
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for i64
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for i128
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for isize
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for u8
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for u16
[src]
impl<Frac: LeEqU32> Cast<FixedI32<Frac>> for u32
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedI8<FracSrc>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedI16<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedI64<FracSrc>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedI128<FracSrc>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedU8<FracSrc>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedU16<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedU32<FracSrc>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedU64<FracSrc>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> Cast<FixedI32<FracDst>> for FixedU128<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> Cast<FixedI64<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> Cast<FixedI8<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> Cast<FixedU128<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> Cast<FixedU16<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> Cast<FixedU32<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> Cast<FixedU64<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> Cast<FixedU8<FracDst>> for FixedI32<FracSrc>
[src]
impl<Frac: LeEqU32> Cast<bf16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<f16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<f32> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<f64> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<i128> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<i16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<i32> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<i64> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<i8> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<isize> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<u128> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<u16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<u32> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<u64> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<u8> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Cast<usize> for FixedI32<Frac>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> CheckedCast<FixedI128<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI128<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> CheckedCast<FixedI16<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI16<FracDst>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for bool
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for i8
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for u64
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for u128
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for usize
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for f32
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for f64
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for f16
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for bf16
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for i16
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for i32
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for i64
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for i128
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for isize
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for u8
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for u16
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> CheckedCast<FixedI32<Frac>> for u32
[src]
fn checked_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedI8<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedI16<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedI64<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedI128<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedU8<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedU16<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedU32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedU64<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> CheckedCast<FixedI32<FracDst>> for FixedU128<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> CheckedCast<FixedI64<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI64<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> CheckedCast<FixedI8<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedI8<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> CheckedCast<FixedU128<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedU128<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> CheckedCast<FixedU16<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedU16<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> CheckedCast<FixedU32<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedU32<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> CheckedCast<FixedU64<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedU64<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> CheckedCast<FixedU8<FracDst>> for FixedI32<FracSrc>
[src]
fn checked_cast(self) -> Option<FixedU8<FracDst>>
[src]
impl<Frac: LeEqU32> CheckedCast<bf16> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<bf16>
[src]
impl<Frac: LeEqU32> CheckedCast<f16> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<f16>
[src]
impl<Frac: LeEqU32> CheckedCast<f32> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<f32>
[src]
impl<Frac: LeEqU32> CheckedCast<f64> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<f64>
[src]
impl<Frac: LeEqU32> CheckedCast<i128> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<i128>
[src]
impl<Frac: LeEqU32> CheckedCast<i16> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<i16>
[src]
impl<Frac: LeEqU32> CheckedCast<i32> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<i32>
[src]
impl<Frac: LeEqU32> CheckedCast<i64> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<i64>
[src]
impl<Frac: LeEqU32> CheckedCast<i8> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<i8>
[src]
impl<Frac: LeEqU32> CheckedCast<isize> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<isize>
[src]
impl<Frac: LeEqU32> CheckedCast<u128> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<u128>
[src]
impl<Frac: LeEqU32> CheckedCast<u16> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<u16>
[src]
impl<Frac: LeEqU32> CheckedCast<u32> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<u32>
[src]
impl<Frac: LeEqU32> CheckedCast<u64> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<u64>
[src]
impl<Frac: LeEqU32> CheckedCast<u8> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<u8>
[src]
impl<Frac: LeEqU32> CheckedCast<usize> for FixedI32<Frac>
[src]
fn checked_cast(self) -> Option<usize>
[src]
impl<Frac> Clone for FixedI32<Frac>
[src]
impl<Frac> Copy for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Debug for FixedI32<Frac>
[src]
impl<Frac> Default for FixedI32<Frac>
[src]
impl<'de, Frac: LeEqU32> Deserialize<'de> for FixedI32<Frac>
[src]
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
[src]
impl<Frac: LeEqU32> Display for FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Div<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the /
operator.
fn div(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac: LeEqU32> Div<&'a FixedI32<Frac>> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the /
operator.
fn div(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Div<&'a i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the /
operator.
fn div(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac: LeEqU32> Div<&'a i32> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the /
operator.
fn div(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Div<FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the /
operator.
fn div(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Div<FixedI32<Frac>> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the /
operator.
fn div(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Div<i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the /
operator.
fn div(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Div<i32> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the /
operator.
fn div(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> DivAssign<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
fn div_assign(&mut self, rhs: &FixedI32<Frac>)
[src]
impl<'a, Frac: LeEqU32> DivAssign<&'a i32> for FixedI32<Frac>
[src]
fn div_assign(&mut self, rhs: &i32)
[src]
impl<Frac: LeEqU32> DivAssign<FixedI32<Frac>> for FixedI32<Frac>
[src]
fn div_assign(&mut self, rhs: FixedI32<Frac>)
[src]
impl<Frac: LeEqU32> DivAssign<i32> for FixedI32<Frac>
[src]
fn div_assign(&mut self, rhs: i32)
[src]
impl<Frac: LeEqU32> Eq for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Fixed for FixedI32<Frac>
[src]
type Bits = i32
The primitive integer underlying type.
type Bytes = [u8; 4]
A byte array with the same size as the type.
type Frac = Frac
The number of fractional bits. Read more
const MIN: Self
[src]
const MAX: Self
[src]
const INT_NBITS: u32
[src]
const FRAC_NBITS: u32
[src]
fn from_bits(bits: Self::Bits) -> Self
[src]
fn to_bits(self) -> Self::Bits
[src]
fn from_be_bytes(bits: Self::Bytes) -> Self
[src]
fn from_le_bytes(bits: Self::Bytes) -> Self
[src]
fn from_ne_bytes(bits: Self::Bytes) -> Self
[src]
fn to_be_bytes(self) -> Self::Bytes
[src]
fn to_le_bytes(self) -> Self::Bytes
[src]
fn to_ne_bytes(self) -> Self::Bytes
[src]
fn from_num<Src: ToFixed>(src: Src) -> Self
[src]
fn to_num<Dst: FromFixed>(self) -> Dst
[src]
fn checked_from_num<Src: ToFixed>(val: Src) -> Option<Self>
[src]
fn checked_to_num<Dst: FromFixed>(self) -> Option<Dst>
[src]
fn saturating_from_num<Src: ToFixed>(val: Src) -> Self
[src]
fn saturating_to_num<Dst: FromFixed>(self) -> Dst
[src]
fn wrapping_from_num<Src: ToFixed>(val: Src) -> Self
[src]
fn wrapping_to_num<Dst: FromFixed>(self) -> Dst
[src]
fn overflowing_from_num<Src: ToFixed>(val: Src) -> (Self, bool)
[src]
fn overflowing_to_num<Dst: FromFixed>(self) -> (Dst, bool)
[src]
fn from_str_binary(src: &str) -> Result<Self, ParseFixedError>
[src]
fn from_str_octal(src: &str) -> Result<Self, ParseFixedError>
[src]
fn from_str_hex(src: &str) -> Result<Self, ParseFixedError>
[src]
fn saturating_from_str(src: &str) -> Result<Self, ParseFixedError>
[src]
fn saturating_from_str_binary(src: &str) -> Result<Self, ParseFixedError>
[src]
fn saturating_from_str_octal(src: &str) -> Result<Self, ParseFixedError>
[src]
fn saturating_from_str_hex(src: &str) -> Result<Self, ParseFixedError>
[src]
fn wrapping_from_str(src: &str) -> Result<Self, ParseFixedError>
[src]
fn wrapping_from_str_binary(src: &str) -> Result<Self, ParseFixedError>
[src]
fn wrapping_from_str_octal(src: &str) -> Result<Self, ParseFixedError>
[src]
fn wrapping_from_str_hex(src: &str) -> Result<Self, ParseFixedError>
[src]
fn overflowing_from_str(src: &str) -> Result<(Self, bool), ParseFixedError>
[src]
fn overflowing_from_str_binary(
src: &str
) -> Result<(Self, bool), ParseFixedError>
[src]
src: &str
) -> Result<(Self, bool), ParseFixedError>
fn overflowing_from_str_octal(
src: &str
) -> Result<(Self, bool), ParseFixedError>
[src]
src: &str
) -> Result<(Self, bool), ParseFixedError>
fn overflowing_from_str_hex(src: &str) -> Result<(Self, bool), ParseFixedError>
[src]
fn int(self) -> Self
[src]
fn frac(self) -> Self
[src]
fn ceil(self) -> Self
[src]
fn floor(self) -> Self
[src]
fn round_to_zero(self) -> Self
[src]
fn round(self) -> Self
[src]
fn round_ties_to_even(self) -> Self
[src]
fn checked_ceil(self) -> Option<Self>
[src]
fn checked_floor(self) -> Option<Self>
[src]
fn checked_round(self) -> Option<Self>
[src]
fn checked_round_ties_to_even(self) -> Option<Self>
[src]
fn saturating_ceil(self) -> Self
[src]
fn saturating_floor(self) -> Self
[src]
fn saturating_round(self) -> Self
[src]
fn saturating_round_ties_to_even(self) -> Self
[src]
fn wrapping_ceil(self) -> Self
[src]
fn wrapping_floor(self) -> Self
[src]
fn wrapping_round(self) -> Self
[src]
fn wrapping_round_ties_to_even(self) -> Self
[src]
fn overflowing_ceil(self) -> (Self, bool)
[src]
fn overflowing_floor(self) -> (Self, bool)
[src]
fn overflowing_round(self) -> (Self, bool)
[src]
fn overflowing_round_ties_to_even(self) -> (Self, bool)
[src]
fn count_ones(self) -> u32
[src]
fn count_zeros(self) -> u32
[src]
fn leading_ones(self) -> u32
[src]
fn leading_zeros(self) -> u32
[src]
fn trailing_ones(self) -> u32
[src]
fn trailing_zeros(self) -> u32
[src]
fn int_log2(self) -> i32
[src]
fn int_log10(self) -> i32
[src]
fn checked_int_log2(self) -> Option<i32>
[src]
fn checked_int_log10(self) -> Option<i32>
[src]
fn rotate_left(self, n: u32) -> Self
[src]
fn rotate_right(self, n: u32) -> Self
[src]
fn div_euclid(self, rhs: Self) -> Self
[src]
fn rem_euclid(self, rhs: Self) -> Self
[src]
fn div_euclid_int(self, rhs: Self::Bits) -> Self
[src]
fn rem_euclid_int(self, rhs: Self::Bits) -> Self
[src]
fn checked_neg(self) -> Option<Self>
[src]
fn checked_add(self, rhs: Self) -> Option<Self>
[src]
fn checked_sub(self, rhs: Self) -> Option<Self>
[src]
fn checked_mul(self, rhs: Self) -> Option<Self>
[src]
fn checked_div(self, rhs: Self) -> Option<Self>
[src]
fn checked_rem(self, rhs: Self) -> Option<Self>
[src]
fn checked_div_euclid(self, rhs: Self) -> Option<Self>
[src]
fn checked_rem_euclid(self, rhs: Self) -> Option<Self>
[src]
fn checked_mul_int(self, rhs: Self::Bits) -> Option<Self>
[src]
fn checked_div_int(self, rhs: Self::Bits) -> Option<Self>
[src]
fn checked_rem_int(self, rhs: Self::Bits) -> Option<Self>
[src]
fn checked_div_euclid_int(self, rhs: Self::Bits) -> Option<Self>
[src]
fn checked_rem_euclid_int(self, rhs: Self::Bits) -> Option<Self>
[src]
fn checked_shl(self, rhs: u32) -> Option<Self>
[src]
fn checked_shr(self, rhs: u32) -> Option<Self>
[src]
fn saturating_neg(self) -> Self
[src]
fn saturating_add(self, rhs: Self) -> Self
[src]
fn saturating_sub(self, rhs: Self) -> Self
[src]
fn saturating_mul(self, rhs: Self) -> Self
[src]
fn saturating_div(self, rhs: Self) -> Self
[src]
fn saturating_div_euclid(self, rhs: Self) -> Self
[src]
fn saturating_mul_int(self, rhs: Self::Bits) -> Self
[src]
fn wrapping_neg(self) -> Self
[src]
fn wrapping_add(self, rhs: Self) -> Self
[src]
fn wrapping_sub(self, rhs: Self) -> Self
[src]
fn wrapping_mul(self, rhs: Self) -> Self
[src]
fn wrapping_div(self, rhs: Self) -> Self
[src]
fn wrapping_div_euclid(self, rhs: Self) -> Self
[src]
fn wrapping_mul_int(self, rhs: Self::Bits) -> Self
[src]
fn wrapping_div_int(self, rhs: Self::Bits) -> Self
[src]
fn wrapping_div_euclid_int(self, rhs: Self::Bits) -> Self
[src]
fn wrapping_rem_euclid_int(self, rhs: Self::Bits) -> Self
[src]
fn wrapping_shl(self, rhs: u32) -> Self
[src]
fn wrapping_shr(self, rhs: u32) -> Self
[src]
fn overflowing_neg(self) -> (Self, bool)
[src]
fn overflowing_add(self, rhs: Self) -> (Self, bool)
[src]
fn overflowing_sub(self, rhs: Self) -> (Self, bool)
[src]
fn overflowing_mul(self, rhs: Self) -> (Self, bool)
[src]
fn overflowing_div(self, rhs: Self) -> (Self, bool)
[src]
fn overflowing_div_euclid(self, rhs: Self) -> (Self, bool)
[src]
fn overflowing_mul_int(self, rhs: Self::Bits) -> (Self, bool)
[src]
fn overflowing_div_int(self, rhs: Self::Bits) -> (Self, bool)
[src]
fn overflowing_div_euclid_int(self, rhs: Self::Bits) -> (Self, bool)
[src]
fn overflowing_rem_euclid_int(self, rhs: Self::Bits) -> (Self, bool)
[src]
fn overflowing_shl(self, rhs: u32) -> (Self, bool)
[src]
fn overflowing_shr(self, rhs: u32) -> (Self, bool)
[src]
fn min_value() -> Self
[src]
fn max_value() -> Self
[src]
fn int_nbits() -> u32
[src]
fn frac_nbits() -> u32
[src]
fn wrapping_rem_int(self, rhs: Self::Bits) -> Self
[src]
fn overflowing_rem_int(self, rhs: Self::Bits) -> (Self, bool)
[src]
impl<Frac: LeEqU32> FixedOptionalFeatures for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> FixedSigned for FixedI32<Frac>
[src]
fn abs(self) -> Self
[src]
fn signum(self) -> Self
[src]
fn checked_abs(self) -> Option<Self>
[src]
fn checked_signum(self) -> Option<Self>
[src]
fn saturating_abs(self) -> Self
[src]
fn saturating_signum(self) -> Self
[src]
fn wrapping_abs(self) -> Self
[src]
fn wrapping_signum(self) -> Self
[src]
fn overflowing_abs(self) -> (Self, bool)
[src]
fn overflowing_signum(self) -> (Self, bool)
[src]
fn is_positive(self) -> bool
[src]
fn is_negative(self) -> bool
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> From<FixedI16<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U16: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U16, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U16: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U16, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn from(src: FixedI16<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) and does not lose any precision (lossless).
impl<Frac: LeEqU32> From<FixedI32<Frac>> for f64
[src]
fn from(src: FixedI32<Frac>) -> f64
[src]
Converts a fixed-point number to a floating-point number.
This conversion never fails (infallible) and does not lose any precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU64> From<FixedI32<FracSrc>> for FixedI64<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U32: Sub<FracSrc>,
U64: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U64, FracDst>, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U32: Sub<FracSrc>,
U64: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U64, FracDst>, Output = True>,
fn from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) and does not lose any precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU128> From<FixedI32<FracSrc>> for FixedI128<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U32: Sub<FracSrc>,
U128: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U128, FracDst>, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U32: Sub<FracSrc>,
U128: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U128, FracDst>, Output = True>,
fn from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) and does not lose any precision (lossless).
impl From<FixedI32<UTerm>> for i32
[src]
fn from(src: FixedI32<U0>) -> Self
[src]
Converts a fixed-point number with no fractional bits to an integer.
This conversion never fails (infallible) and cannot lose any fractional bits (lossless).
impl From<FixedI32<UTerm>> for i64
[src]
fn from(src: FixedI32<U0>) -> Self
[src]
Converts a fixed-point number with no fractional bits to an integer.
This conversion never fails (infallible) and cannot lose any fractional bits (lossless).
impl From<FixedI32<UTerm>> for i128
[src]
fn from(src: FixedI32<U0>) -> Self
[src]
Converts a fixed-point number with no fractional bits to an integer.
This conversion never fails (infallible) and cannot lose any fractional bits (lossless).
impl<FracSrc: LeEqU8, FracDst: LeEqU32> From<FixedI8<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U8: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U8, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U8: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U8, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn from(src: FixedI8<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) and does not lose any precision (lossless).
impl<FracSrc: LeEqU16, FracDst: LeEqU32> From<FixedU16<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U16: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U16, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U16: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U16, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn from(src: FixedU16<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) and does not lose any precision (lossless).
impl<FracSrc: LeEqU8, FracDst: LeEqU32> From<FixedU8<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U8: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U8, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
U8: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U8, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn from(src: FixedU8<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) and does not lose any precision (lossless).
impl<FracDst: LeEqU32> From<bool> for FixedI32<FracDst> where
U31: Sub<FracDst>,
U1: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U31: Sub<FracDst>,
U1: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn from(src: bool) -> Self
[src]
Converts a bool
to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits (lossless).
impl<FracDst: LeEqU32> From<i16> for FixedI32<FracDst> where
U32: Sub<FracDst>,
U16: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
U32: Sub<FracDst>,
U16: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn from(src: i16) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits, so it is actually lossless.
impl From<i32> for FixedI32<U0>
[src]
fn from(src: i32) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits (lossless).
impl<FracDst: LeEqU32> From<i8> for FixedI32<FracDst> where
U32: Sub<FracDst>,
U8: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
U32: Sub<FracDst>,
U8: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn from(src: i8) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits, so it is actually lossless.
impl<FracDst: LeEqU32> From<u16> for FixedI32<FracDst> where
U31: Sub<FracDst>,
U16: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U31: Sub<FracDst>,
U16: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn from(src: u16) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits, so it is actually lossless.
impl<FracDst: LeEqU32> From<u8> for FixedI32<FracDst> where
U31: Sub<FracDst>,
U8: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U31: Sub<FracDst>,
U8: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn from(src: u8) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits, so it is actually lossless.
impl<Frac: LeEqU32> FromFixed for FixedI32<Frac>
[src]
fn from_fixed<F: Fixed>(src: F) -> Self
[src]
Converts a fixed-point number.
Any extra fractional bits are discarded, which rounds towards −∞.
fn checked_from_fixed<F: Fixed>(src: F) -> Option<Self>
[src]
Converts a fixed-point number if it fits, otherwise returns None
.
Any extra fractional bits are discarded, which rounds towards −∞.
fn saturating_from_fixed<F: Fixed>(src: F) -> Self
[src]
Converts a fixed-point number, saturating if it does not fit.
Any extra fractional bits are discarded, which rounds towards −∞.
fn wrapping_from_fixed<F: Fixed>(src: F) -> Self
[src]
Converts a fixed-point number, wrapping if it does not fit.
Any extra fractional bits are discarded, which rounds towards −∞.
fn overflowing_from_fixed<F: Fixed>(src: F) -> (Self, bool)
[src]
impl<Frac: LeEqU32> FromStr for FixedI32<Frac>
[src]
type Err = ParseFixedError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>
[src]
Parses a string slice to return a fixed-point number.
Rounding is to the nearest, with ties rounded to even.
impl<Frac> Hash for FixedI32<Frac>
[src]
fn hash<H: Hasher>(&self, state: &mut H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<FracSrc: LeEqU128, FracDst: LeEqU32> LosslessTryFrom<FixedI128<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI128<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU16, FracDst: LeEqU32> LosslessTryFrom<FixedI16<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI16<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<FixedI32<Frac>> for f64
[src]
fn lossless_try_from(src: FixedI32<Frac>) -> Option<f64>
[src]
Converts a fixed-point number to a floating-point number.
This conversion actually never fails (infallible) but does not lose any precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU8> LosslessTryFrom<FixedI32<FracSrc>> for FixedI8<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU16> LosslessTryFrom<FixedI32<FracSrc>> for FixedI16<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU32> LosslessTryFrom<FixedI32<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU64> LosslessTryFrom<FixedI32<FracSrc>> for FixedI64<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU128> LosslessTryFrom<FixedI32<FracSrc>> for FixedI128<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU8> LosslessTryFrom<FixedI32<FracSrc>> for FixedU8<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU16> LosslessTryFrom<FixedI32<FracSrc>> for FixedU16<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU32> LosslessTryFrom<FixedI32<FracSrc>> for FixedU32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU64> LosslessTryFrom<FixedI32<FracSrc>> for FixedU64<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU128> LosslessTryFrom<FixedI32<FracSrc>> for FixedU128<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for i8
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for i16
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for u128
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for usize
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for i32
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for i64
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for i128
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for isize
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for u8
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for u16
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for u32
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl LosslessTryFrom<FixedI32<UTerm>> for u64
[src]
fn lossless_try_from(src: FixedI32<U0>) -> Option<Self>
[src]
Converts a fixed-point number to an integer.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<FracSrc: LeEqU64, FracDst: LeEqU32> LosslessTryFrom<FixedI64<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI64<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU8, FracDst: LeEqU32> LosslessTryFrom<FixedI8<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedI8<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU128, FracDst: LeEqU32> LosslessTryFrom<FixedU128<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedU128<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU16, FracDst: LeEqU32> LosslessTryFrom<FixedU16<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedU16<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU32, FracDst: LeEqU32> LosslessTryFrom<FixedU32<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedU32<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU64, FracDst: LeEqU32> LosslessTryFrom<FixedU64<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedU64<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<FracSrc: LeEqU8, FracDst: LeEqU32> LosslessTryFrom<FixedU8<FracSrc>> for FixedI32<FracDst> where
FracSrc: IsLessOrEqual<FracDst, Output = True>,
[src]
FracSrc: IsLessOrEqual<FracDst, Output = True>,
fn lossless_try_from(src: FixedU8<FracSrc>) -> Option<Self>
[src]
Converts a fixed-pint number.
This conversion may fail (fallible) but does not lose precision (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<bool> for FixedI32<Frac>
[src]
fn lossless_try_from(src: bool) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<f16> for FixedI32<Frac> where
U24: IsLessOrEqual<Frac, Output = True>,
[src]
U24: IsLessOrEqual<Frac, Output = True>,
fn lossless_try_from(src: f16) -> Option<Self>
[src]
Converts a floating-point number to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<i128> for FixedI32<Frac>
[src]
fn lossless_try_from(src: i128) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<i16> for FixedI32<Frac>
[src]
fn lossless_try_from(src: i16) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<i32> for FixedI32<Frac>
[src]
fn lossless_try_from(src: i32) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<i64> for FixedI32<Frac>
[src]
fn lossless_try_from(src: i64) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<i8> for FixedI32<Frac>
[src]
fn lossless_try_from(src: i8) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<isize> for FixedI32<Frac>
[src]
fn lossless_try_from(src: isize) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<u128> for FixedI32<Frac>
[src]
fn lossless_try_from(src: u128) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<u16> for FixedI32<Frac>
[src]
fn lossless_try_from(src: u16) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<u32> for FixedI32<Frac>
[src]
fn lossless_try_from(src: u32) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<u64> for FixedI32<Frac>
[src]
fn lossless_try_from(src: u64) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<u8> for FixedI32<Frac>
[src]
fn lossless_try_from(src: u8) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<Frac: LeEqU32> LosslessTryFrom<usize> for FixedI32<Frac>
[src]
fn lossless_try_from(src: usize) -> Option<Self>
[src]
Converts an integer to a fixed-point number.
This conversion may fail (fallible) but cannot lose any fractional bits (lossless).
impl<FracSrc: LeEqU128, FracDst: LeEqU32> LossyFrom<FixedI128<FracSrc>> for FixedI32<FracDst> where
U128: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U128, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
U128: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U128, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn lossy_from(src: FixedI128<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU16, FracDst: LeEqU32> LossyFrom<FixedI16<FracSrc>> for FixedI32<FracDst> where
U16: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U16, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
U16: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U16, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn lossy_from(src: FixedI16<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<Frac: LeEqU32> LossyFrom<FixedI32<Frac>> for f16
[src]
fn lossy_from(src: FixedI32<Frac>) -> f16
[src]
Converts a fixed-point number to a floating-point number.
This conversion never fails (infallible) but may lose precision (lossy). Rounding is to the nearest, with ties rounded to even.
impl<Frac: LeEqU32> LossyFrom<FixedI32<Frac>> for bf16
[src]
fn lossy_from(src: FixedI32<Frac>) -> bf16
[src]
Converts a fixed-point number to a floating-point number.
This conversion never fails (infallible) but may lose precision (lossy). Rounding is to the nearest, with ties rounded to even.
impl<Frac: LeEqU32> LossyFrom<FixedI32<Frac>> for f32
[src]
fn lossy_from(src: FixedI32<Frac>) -> f32
[src]
Converts a fixed-point number to a floating-point number.
This conversion never fails (infallible) but may lose precision (lossy). Rounding is to the nearest, with ties rounded to even.
impl<Frac: LeEqU32> LossyFrom<FixedI32<Frac>> for f64
[src]
fn lossy_from(src: FixedI32<Frac>) -> f64
[src]
Converts a fixed-point number to a floating-point number.
This conversion never fails (infallible) but may lose precision (lossy). Rounding is to the nearest, with ties rounded to even.
impl<FracSrc: LeEqU32, FracDst: LeEqU8> LossyFrom<FixedI32<FracSrc>> for FixedI8<FracDst> where
U32: Sub<FracSrc>,
U8: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U8, FracDst>, Output = True>,
[src]
U32: Sub<FracSrc>,
U8: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U8, FracDst>, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32, FracDst: LeEqU16> LossyFrom<FixedI32<FracSrc>> for FixedI16<FracDst> where
U32: Sub<FracSrc>,
U16: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U16, FracDst>, Output = True>,
[src]
U32: Sub<FracSrc>,
U16: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U16, FracDst>, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32> LossyFrom<FixedI32<FracSrc>> for isize where
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U16, Output = True>,
[src]
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U16, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-point number to an integer.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32, FracDst: LeEqU32> LossyFrom<FixedI32<FracSrc>> for FixedI32<FracDst> where
U32: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
U32: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32, FracDst: LeEqU64> LossyFrom<FixedI32<FracSrc>> for FixedI64<FracDst> where
U32: Sub<FracSrc>,
U64: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U64, FracDst>, Output = True>,
[src]
U32: Sub<FracSrc>,
U64: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U64, FracDst>, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32, FracDst: LeEqU128> LossyFrom<FixedI32<FracSrc>> for FixedI128<FracDst> where
U32: Sub<FracSrc>,
U128: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U128, FracDst>, Output = True>,
[src]
U32: Sub<FracSrc>,
U128: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U128, FracDst>, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32> LossyFrom<FixedI32<FracSrc>> for i8 where
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U8, Output = True>,
[src]
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U8, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-point number to an integer.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32> LossyFrom<FixedI32<FracSrc>> for i16 where
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U16, Output = True>,
[src]
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U16, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-point number to an integer.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32> LossyFrom<FixedI32<FracSrc>> for i32 where
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U32, Output = True>,
[src]
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U32, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-point number to an integer.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32> LossyFrom<FixedI32<FracSrc>> for i64 where
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U64, Output = True>,
[src]
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U64, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-point number to an integer.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32> LossyFrom<FixedI32<FracSrc>> for i128 where
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U128, Output = True>,
[src]
U32: Sub<FracSrc>,
Diff<U32, FracSrc>: IsLessOrEqual<U128, Output = True>,
fn lossy_from(src: FixedI32<FracSrc>) -> Self
[src]
Converts a fixed-point number to an integer.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU64, FracDst: LeEqU32> LossyFrom<FixedI64<FracSrc>> for FixedI32<FracDst> where
U64: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U64, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
U64: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U64, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn lossy_from(src: FixedI64<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU8, FracDst: LeEqU32> LossyFrom<FixedI8<FracSrc>> for FixedI32<FracDst> where
U8: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U8, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
U8: Sub<FracSrc>,
U32: Sub<FracDst>,
Diff<U8, FracSrc>: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn lossy_from(src: FixedI8<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU128, FracDst: LeEqU32> LossyFrom<FixedU128<FracSrc>> for FixedI32<FracDst> where
U128: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U128, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U128: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U128, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn lossy_from(src: FixedU128<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU16, FracDst: LeEqU32> LossyFrom<FixedU16<FracSrc>> for FixedI32<FracDst> where
U16: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U16, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U16: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U16, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn lossy_from(src: FixedU16<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU32, FracDst: LeEqU32> LossyFrom<FixedU32<FracSrc>> for FixedI32<FracDst> where
U32: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U32: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U32, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn lossy_from(src: FixedU32<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU64, FracDst: LeEqU32> LossyFrom<FixedU64<FracSrc>> for FixedI32<FracDst> where
U64: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U64, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U64: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U64, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn lossy_from(src: FixedU64<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracSrc: LeEqU8, FracDst: LeEqU32> LossyFrom<FixedU8<FracSrc>> for FixedI32<FracDst> where
U8: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U8, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U8: Sub<FracSrc>,
U31: Sub<FracDst>,
Diff<U8, FracSrc>: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn lossy_from(src: FixedU8<FracSrc>) -> Self
[src]
Converts a fixed-pint number.
This conversion never fails (infallible) but may lose precision (lossy). Any fractional bits in the source that cannot be represented in the destination are discarded, which rounds towards −∞.
impl<FracDst: LeEqU32> LossyFrom<bool> for FixedI32<FracDst> where
U31: Sub<FracDst>,
U1: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U31: Sub<FracDst>,
U1: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn lossy_from(src: bool) -> Self
[src]
Converts a bool
to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits, so it is actually lossless.
impl<FracDst: LeEqU32> LossyFrom<i16> for FixedI32<FracDst> where
U32: Sub<FracDst>,
U16: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
U32: Sub<FracDst>,
U16: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn lossy_from(src: i16) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits, so it is actually lossless.
impl LossyFrom<i32> for FixedI32<U0>
[src]
fn lossy_from(src: i32) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and actually does not lose any precision (lossless).
impl<FracDst: LeEqU32> LossyFrom<i8> for FixedI32<FracDst> where
U32: Sub<FracDst>,
U8: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
[src]
U32: Sub<FracDst>,
U8: IsLessOrEqual<Diff<U32, FracDst>, Output = True>,
fn lossy_from(src: i8) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits, so it is actually lossless.
impl<FracDst: LeEqU32> LossyFrom<u16> for FixedI32<FracDst> where
U31: Sub<FracDst>,
U16: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U31: Sub<FracDst>,
U16: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn lossy_from(src: u16) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits, so it is actually lossless.
impl<FracDst: LeEqU32> LossyFrom<u8> for FixedI32<FracDst> where
U31: Sub<FracDst>,
U8: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
[src]
U31: Sub<FracDst>,
U8: IsLessOrEqual<Diff<U31, FracDst>, Output = True>,
fn lossy_from(src: u8) -> Self
[src]
Converts an integer to a fixed-point number.
This conversion never fails (infallible) and cannot lose any fractional bits, so it is actually lossless.
impl<Frac: LeEqU32> LowerHex for FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Mul<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac: LeEqU32> Mul<&'a FixedI32<Frac>> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Mul<&'a FixedI32<Frac>> for i32
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac: LeEqU32> Mul<&'a FixedI32<Frac>> for &'b i32
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Mul<&'a i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac: LeEqU32> Mul<&'a i32> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Mul<FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Mul<FixedI32<Frac>> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Mul<FixedI32<Frac>> for i32
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Mul<FixedI32<Frac>> for &'a i32
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Mul<i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Mul<i32> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the *
operator.
fn mul(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> MulAssign<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
fn mul_assign(&mut self, rhs: &FixedI32<Frac>)
[src]
impl<'a, Frac: LeEqU32> MulAssign<&'a i32> for FixedI32<Frac>
[src]
fn mul_assign(&mut self, rhs: &i32)
[src]
impl<Frac: LeEqU32> MulAssign<FixedI32<Frac>> for FixedI32<Frac>
[src]
fn mul_assign(&mut self, rhs: FixedI32<Frac>)
[src]
impl<Frac: LeEqU32> MulAssign<i32> for FixedI32<Frac>
[src]
fn mul_assign(&mut self, rhs: i32)
[src]
impl<Frac> Neg for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the -
operator.
fn neg(self) -> FixedI32<Frac>
[src]
impl<'a, Frac> Neg for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the -
operator.
fn neg(self) -> FixedI32<Frac>
[src]
impl<Frac> Not for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the !
operator.
fn not(self) -> FixedI32<Frac>
[src]
impl<'a, Frac> Not for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the !
operator.
fn not(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Octal for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Ord for FixedI32<Frac>
[src]
fn cmp(&self, rhs: &FixedI32<Frac>) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> OverflowingCast<FixedI128<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> OverflowingCast<FixedI16<FracDst>> for FixedI32<FracSrc>
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for bool
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for i8
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for u64
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for u128
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for usize
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for f32
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for f64
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for f16
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for bf16
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for i16
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for i32
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for i64
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for i128
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for isize
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for u8
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for u16
[src]
impl<Frac: LeEqU32> OverflowingCast<FixedI32<Frac>> for u32
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedI8<FracSrc>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedI16<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedI64<FracSrc>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedI128<FracSrc>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedU8<FracSrc>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedU16<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedU32<FracSrc>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedU64<FracSrc>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> OverflowingCast<FixedI32<FracDst>> for FixedU128<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> OverflowingCast<FixedI64<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> OverflowingCast<FixedI8<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> OverflowingCast<FixedU128<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> OverflowingCast<FixedU16<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> OverflowingCast<FixedU32<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> OverflowingCast<FixedU64<FracDst>> for FixedI32<FracSrc>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> OverflowingCast<FixedU8<FracDst>> for FixedI32<FracSrc>
[src]
impl<Frac: LeEqU32> OverflowingCast<bf16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<f16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<f32> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<f64> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<i128> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<i16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<i32> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<i64> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<i8> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<isize> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<u128> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<u16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<u32> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<u64> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<u8> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> OverflowingCast<usize> for FixedI32<Frac>
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU128> PartialEq<FixedI128<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedI128<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU16> PartialEq<FixedI16<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedI16<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for i8
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for i16
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for u128
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for usize
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for f16
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for bf16
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for f32
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for f64
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for i32
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for i64
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for i128
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for isize
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for u8
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for u16
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for u32
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<FixedI32<Frac>> for u64
[src]
fn eq(&self, rhs: &FixedI32<Frac>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU8, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedI8<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU16, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedI16<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU64, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedI64<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU128, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedI128<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU8, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedU8<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU16, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedU16<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedU32<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU64, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedU64<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU128, FracRhs: LeEqU32> PartialEq<FixedI32<FracRhs>> for FixedU128<FracLhs>
[src]
fn eq(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU64> PartialEq<FixedI64<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedI64<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU8> PartialEq<FixedI8<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedI8<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU128> PartialEq<FixedU128<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedU128<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU16> PartialEq<FixedU16<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedU16<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU32> PartialEq<FixedU32<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedU32<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU64> PartialEq<FixedU64<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedU64<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU8> PartialEq<FixedU8<FracRhs>> for FixedI32<FracLhs>
[src]
fn eq(&self, rhs: &FixedU8<FracRhs>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<Frac: LeEqU32> PartialEq<bf16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<f16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<f32> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<f64> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<i128> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<i16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<i32> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<i64> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<i8> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<isize> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<u128> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<u16> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<u32> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<u64> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<u8> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> PartialEq<usize> for FixedI32<Frac>
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU128> PartialOrd<FixedI128<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI128<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI128<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI128<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI128<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI128<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU16> PartialOrd<FixedI16<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI16<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI16<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI16<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI16<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI16<FracRhs>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for i8
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for i16
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for u128
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for usize
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for f16
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for bf16
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for f32
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for f64
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for i32
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for i64
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for i128
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for isize
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for u8
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for u16
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for u32
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<FixedI32<Frac>> for u64
[src]
fn partial_cmp(&self, rhs: &FixedI32<Frac>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn le(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<Frac>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<Frac>) -> bool
[src]
impl<FracLhs: LeEqU8, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedI8<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU16, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedI16<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU64, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedI64<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU128, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedI128<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU8, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedU8<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU16, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedU16<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedU32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU64, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedU64<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU128, FracRhs: LeEqU32> PartialOrd<FixedI32<FracRhs>> for FixedU128<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU64> PartialOrd<FixedI64<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI64<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI64<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI64<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI64<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI64<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU8> PartialOrd<FixedI8<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedI8<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedI8<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedI8<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedI8<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedI8<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU128> PartialOrd<FixedU128<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedU128<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedU128<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedU128<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedU128<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedU128<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU16> PartialOrd<FixedU16<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedU16<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedU16<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedU16<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedU16<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedU16<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU32> PartialOrd<FixedU32<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedU32<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedU32<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedU32<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedU32<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedU32<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU64> PartialOrd<FixedU64<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedU64<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedU64<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedU64<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedU64<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedU64<FracRhs>) -> bool
[src]
impl<FracLhs: LeEqU32, FracRhs: LeEqU8> PartialOrd<FixedU8<FracRhs>> for FixedI32<FracLhs>
[src]
fn partial_cmp(&self, rhs: &FixedU8<FracRhs>) -> Option<Ordering>
[src]
fn lt(&self, rhs: &FixedU8<FracRhs>) -> bool
[src]
fn le(&self, rhs: &FixedU8<FracRhs>) -> bool
[src]
fn gt(&self, rhs: &FixedU8<FracRhs>) -> bool
[src]
fn ge(&self, rhs: &FixedU8<FracRhs>) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<bf16> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &bf16) -> Option<Ordering>
[src]
fn lt(&self, rhs: &bf16) -> bool
[src]
fn le(&self, rhs: &bf16) -> bool
[src]
fn gt(&self, rhs: &bf16) -> bool
[src]
fn ge(&self, rhs: &bf16) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<f16> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &f16) -> Option<Ordering>
[src]
fn lt(&self, rhs: &f16) -> bool
[src]
fn le(&self, rhs: &f16) -> bool
[src]
fn gt(&self, rhs: &f16) -> bool
[src]
fn ge(&self, rhs: &f16) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<f32> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &f32) -> Option<Ordering>
[src]
fn lt(&self, rhs: &f32) -> bool
[src]
fn le(&self, rhs: &f32) -> bool
[src]
fn gt(&self, rhs: &f32) -> bool
[src]
fn ge(&self, rhs: &f32) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<f64> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &f64) -> Option<Ordering>
[src]
fn lt(&self, rhs: &f64) -> bool
[src]
fn le(&self, rhs: &f64) -> bool
[src]
fn gt(&self, rhs: &f64) -> bool
[src]
fn ge(&self, rhs: &f64) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<i128> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &i128) -> Option<Ordering>
[src]
fn lt(&self, rhs: &i128) -> bool
[src]
fn le(&self, rhs: &i128) -> bool
[src]
fn gt(&self, rhs: &i128) -> bool
[src]
fn ge(&self, rhs: &i128) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<i16> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &i16) -> Option<Ordering>
[src]
fn lt(&self, rhs: &i16) -> bool
[src]
fn le(&self, rhs: &i16) -> bool
[src]
fn gt(&self, rhs: &i16) -> bool
[src]
fn ge(&self, rhs: &i16) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<i32> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &i32) -> Option<Ordering>
[src]
fn lt(&self, rhs: &i32) -> bool
[src]
fn le(&self, rhs: &i32) -> bool
[src]
fn gt(&self, rhs: &i32) -> bool
[src]
fn ge(&self, rhs: &i32) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<i64> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &i64) -> Option<Ordering>
[src]
fn lt(&self, rhs: &i64) -> bool
[src]
fn le(&self, rhs: &i64) -> bool
[src]
fn gt(&self, rhs: &i64) -> bool
[src]
fn ge(&self, rhs: &i64) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<i8> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &i8) -> Option<Ordering>
[src]
fn lt(&self, rhs: &i8) -> bool
[src]
fn le(&self, rhs: &i8) -> bool
[src]
fn gt(&self, rhs: &i8) -> bool
[src]
fn ge(&self, rhs: &i8) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<isize> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &isize) -> Option<Ordering>
[src]
fn lt(&self, rhs: &isize) -> bool
[src]
fn le(&self, rhs: &isize) -> bool
[src]
fn gt(&self, rhs: &isize) -> bool
[src]
fn ge(&self, rhs: &isize) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<u128> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &u128) -> Option<Ordering>
[src]
fn lt(&self, rhs: &u128) -> bool
[src]
fn le(&self, rhs: &u128) -> bool
[src]
fn gt(&self, rhs: &u128) -> bool
[src]
fn ge(&self, rhs: &u128) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<u16> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &u16) -> Option<Ordering>
[src]
fn lt(&self, rhs: &u16) -> bool
[src]
fn le(&self, rhs: &u16) -> bool
[src]
fn gt(&self, rhs: &u16) -> bool
[src]
fn ge(&self, rhs: &u16) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<u32> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &u32) -> Option<Ordering>
[src]
fn lt(&self, rhs: &u32) -> bool
[src]
fn le(&self, rhs: &u32) -> bool
[src]
fn gt(&self, rhs: &u32) -> bool
[src]
fn ge(&self, rhs: &u32) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<u64> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &u64) -> Option<Ordering>
[src]
fn lt(&self, rhs: &u64) -> bool
[src]
fn le(&self, rhs: &u64) -> bool
[src]
fn gt(&self, rhs: &u64) -> bool
[src]
fn ge(&self, rhs: &u64) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<u8> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &u8) -> Option<Ordering>
[src]
fn lt(&self, rhs: &u8) -> bool
[src]
fn le(&self, rhs: &u8) -> bool
[src]
fn gt(&self, rhs: &u8) -> bool
[src]
fn ge(&self, rhs: &u8) -> bool
[src]
impl<Frac: LeEqU32> PartialOrd<usize> for FixedI32<Frac>
[src]
fn partial_cmp(&self, rhs: &usize) -> Option<Ordering>
[src]
fn lt(&self, rhs: &usize) -> bool
[src]
fn le(&self, rhs: &usize) -> bool
[src]
fn gt(&self, rhs: &usize) -> bool
[src]
fn ge(&self, rhs: &usize) -> bool
[src]
impl<'a, Frac: 'a + LeEqU32> Product<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Product<FixedI32<Frac>> for FixedI32<Frac>
[src]
impl<'a, Frac> Rem<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the %
operator.
fn rem(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Rem<&'a FixedI32<Frac>> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the %
operator.
fn rem(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Rem<&'a i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the %
operator.
fn rem(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac: LeEqU32> Rem<&'a i32> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the %
operator.
fn rem(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<Frac> Rem<FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the %
operator.
fn rem(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> Rem<FixedI32<Frac>> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the %
operator.
fn rem(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> Rem<i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the %
operator.
fn rem(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<'a, Frac: LeEqU32> Rem<i32> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the %
operator.
fn rem(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<'a, Frac> RemAssign<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
fn rem_assign(&mut self, rhs: &FixedI32<Frac>)
[src]
impl<'a, Frac: LeEqU32> RemAssign<&'a i32> for FixedI32<Frac>
[src]
fn rem_assign(&mut self, rhs: &i32)
[src]
impl<Frac> RemAssign<FixedI32<Frac>> for FixedI32<Frac>
[src]
fn rem_assign(&mut self, rhs: FixedI32<Frac>)
[src]
impl<Frac: LeEqU32> RemAssign<i32> for FixedI32<Frac>
[src]
fn rem_assign(&mut self, rhs: i32)
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> SaturatingCast<FixedI128<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedI128<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> SaturatingCast<FixedI16<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedI16<FracDst>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for bool
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for i8
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for u64
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for u128
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for usize
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for f32
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for f64
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for f16
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for bf16
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for i16
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for i32
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for i64
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for i128
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for isize
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for u8
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for u16
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> SaturatingCast<FixedI32<Frac>> for u32
[src]
fn saturating_cast(self) -> FixedI32<Frac>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedI8<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedI16<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedI64<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedI128<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedU8<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedU16<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedU32<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedU64<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> SaturatingCast<FixedI32<FracDst>> for FixedU128<FracSrc>
[src]
fn saturating_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> SaturatingCast<FixedI64<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedI64<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> SaturatingCast<FixedI8<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedI8<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> SaturatingCast<FixedU128<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedU128<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> SaturatingCast<FixedU16<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedU16<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> SaturatingCast<FixedU32<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedU32<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> SaturatingCast<FixedU64<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedU64<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> SaturatingCast<FixedU8<FracDst>> for FixedI32<FracSrc>
[src]
fn saturating_cast(self) -> FixedU8<FracDst>
[src]
impl<Frac: LeEqU32> SaturatingCast<bf16> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> bf16
[src]
impl<Frac: LeEqU32> SaturatingCast<f16> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> f16
[src]
impl<Frac: LeEqU32> SaturatingCast<f32> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> f32
[src]
impl<Frac: LeEqU32> SaturatingCast<f64> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> f64
[src]
impl<Frac: LeEqU32> SaturatingCast<i128> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> i128
[src]
impl<Frac: LeEqU32> SaturatingCast<i16> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> i16
[src]
impl<Frac: LeEqU32> SaturatingCast<i32> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> i32
[src]
impl<Frac: LeEqU32> SaturatingCast<i64> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> i64
[src]
impl<Frac: LeEqU32> SaturatingCast<i8> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> i8
[src]
impl<Frac: LeEqU32> SaturatingCast<isize> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> isize
[src]
impl<Frac: LeEqU32> SaturatingCast<u128> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> u128
[src]
impl<Frac: LeEqU32> SaturatingCast<u16> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> u16
[src]
impl<Frac: LeEqU32> SaturatingCast<u32> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> u32
[src]
impl<Frac: LeEqU32> SaturatingCast<u64> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> u64
[src]
impl<Frac: LeEqU32> SaturatingCast<u8> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> u8
[src]
impl<Frac: LeEqU32> SaturatingCast<usize> for FixedI32<Frac>
[src]
fn saturating_cast(self) -> usize
[src]
impl<Frac: LeEqU32> Serialize for FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a i128> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i128) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a i128> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i128) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a i16> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i16) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a i16> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i16) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a i32> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a i64> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i64) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a i64> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i64) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a i8> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i8) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a i8> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &i8) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a isize> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &isize) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a isize> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &isize) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a u128> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u128) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a u128> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u128) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a u16> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u16) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a u16> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u16) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a u32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u32) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a u32> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u32) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a u64> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u64) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a u64> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u64) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a u8> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u8) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a u8> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &u8) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<&'a usize> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &usize) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shl<&'a usize> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: &usize) -> FixedI32<Frac>
[src]
impl<Frac> Shl<i128> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i128) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<i128> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i128) -> FixedI32<Frac>
[src]
impl<Frac> Shl<i16> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i16) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<i16> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i16) -> FixedI32<Frac>
[src]
impl<Frac> Shl<i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<i32> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<Frac> Shl<i64> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i64) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<i64> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i64) -> FixedI32<Frac>
[src]
impl<Frac> Shl<i8> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i8) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<i8> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: i8) -> FixedI32<Frac>
[src]
impl<Frac> Shl<isize> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: isize) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<isize> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: isize) -> FixedI32<Frac>
[src]
impl<Frac> Shl<u128> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u128) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<u128> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u128) -> FixedI32<Frac>
[src]
impl<Frac> Shl<u16> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u16) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<u16> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u16) -> FixedI32<Frac>
[src]
impl<Frac> Shl<u32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u32) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<u32> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u32) -> FixedI32<Frac>
[src]
impl<Frac> Shl<u64> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u64) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<u64> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u64) -> FixedI32<Frac>
[src]
impl<Frac> Shl<u8> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u8) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<u8> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: u8) -> FixedI32<Frac>
[src]
impl<Frac> Shl<usize> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: usize) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shl<usize> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the <<
operator.
fn shl(self, rhs: usize) -> FixedI32<Frac>
[src]
impl<'a, Frac> ShlAssign<&'a i128> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &i128)
[src]
impl<'a, Frac> ShlAssign<&'a i16> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &i16)
[src]
impl<'a, Frac> ShlAssign<&'a i32> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &i32)
[src]
impl<'a, Frac> ShlAssign<&'a i64> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &i64)
[src]
impl<'a, Frac> ShlAssign<&'a i8> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &i8)
[src]
impl<'a, Frac> ShlAssign<&'a isize> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &isize)
[src]
impl<'a, Frac> ShlAssign<&'a u128> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &u128)
[src]
impl<'a, Frac> ShlAssign<&'a u16> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &u16)
[src]
impl<'a, Frac> ShlAssign<&'a u32> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &u32)
[src]
impl<'a, Frac> ShlAssign<&'a u64> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &u64)
[src]
impl<'a, Frac> ShlAssign<&'a u8> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &u8)
[src]
impl<'a, Frac> ShlAssign<&'a usize> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: &usize)
[src]
impl<Frac> ShlAssign<i128> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: i128)
[src]
impl<Frac> ShlAssign<i16> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: i16)
[src]
impl<Frac> ShlAssign<i32> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: i32)
[src]
impl<Frac> ShlAssign<i64> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: i64)
[src]
impl<Frac> ShlAssign<i8> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: i8)
[src]
impl<Frac> ShlAssign<isize> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: isize)
[src]
impl<Frac> ShlAssign<u128> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: u128)
[src]
impl<Frac> ShlAssign<u16> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: u16)
[src]
impl<Frac> ShlAssign<u32> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: u32)
[src]
impl<Frac> ShlAssign<u64> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: u64)
[src]
impl<Frac> ShlAssign<u8> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: u8)
[src]
impl<Frac> ShlAssign<usize> for FixedI32<Frac>
[src]
fn shl_assign(&mut self, rhs: usize)
[src]
impl<'a, Frac> Shr<&'a i128> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i128) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a i128> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i128) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a i16> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i16) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a i16> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i16) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a i32> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i32) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a i64> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i64) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a i64> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i64) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a i8> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i8) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a i8> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &i8) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a isize> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &isize) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a isize> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &isize) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a u128> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u128) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a u128> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u128) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a u16> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u16) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a u16> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u16) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a u32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u32) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a u32> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u32) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a u64> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u64) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a u64> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u64) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a u8> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u8) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a u8> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &u8) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<&'a usize> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &usize) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Shr<&'a usize> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: &usize) -> FixedI32<Frac>
[src]
impl<Frac> Shr<i128> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i128) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<i128> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i128) -> FixedI32<Frac>
[src]
impl<Frac> Shr<i16> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i16) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<i16> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i16) -> FixedI32<Frac>
[src]
impl<Frac> Shr<i32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<i32> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i32) -> FixedI32<Frac>
[src]
impl<Frac> Shr<i64> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i64) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<i64> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i64) -> FixedI32<Frac>
[src]
impl<Frac> Shr<i8> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i8) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<i8> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: i8) -> FixedI32<Frac>
[src]
impl<Frac> Shr<isize> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: isize) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<isize> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: isize) -> FixedI32<Frac>
[src]
impl<Frac> Shr<u128> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u128) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<u128> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u128) -> FixedI32<Frac>
[src]
impl<Frac> Shr<u16> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u16) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<u16> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u16) -> FixedI32<Frac>
[src]
impl<Frac> Shr<u32> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u32) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<u32> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u32) -> FixedI32<Frac>
[src]
impl<Frac> Shr<u64> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u64) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<u64> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u64) -> FixedI32<Frac>
[src]
impl<Frac> Shr<u8> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u8) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<u8> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: u8) -> FixedI32<Frac>
[src]
impl<Frac> Shr<usize> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: usize) -> FixedI32<Frac>
[src]
impl<'a, Frac> Shr<usize> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the >>
operator.
fn shr(self, rhs: usize) -> FixedI32<Frac>
[src]
impl<'a, Frac> ShrAssign<&'a i128> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &i128)
[src]
impl<'a, Frac> ShrAssign<&'a i16> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &i16)
[src]
impl<'a, Frac> ShrAssign<&'a i32> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &i32)
[src]
impl<'a, Frac> ShrAssign<&'a i64> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &i64)
[src]
impl<'a, Frac> ShrAssign<&'a i8> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &i8)
[src]
impl<'a, Frac> ShrAssign<&'a isize> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &isize)
[src]
impl<'a, Frac> ShrAssign<&'a u128> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &u128)
[src]
impl<'a, Frac> ShrAssign<&'a u16> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &u16)
[src]
impl<'a, Frac> ShrAssign<&'a u32> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &u32)
[src]
impl<'a, Frac> ShrAssign<&'a u64> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &u64)
[src]
impl<'a, Frac> ShrAssign<&'a u8> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &u8)
[src]
impl<'a, Frac> ShrAssign<&'a usize> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: &usize)
[src]
impl<Frac> ShrAssign<i128> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: i128)
[src]
impl<Frac> ShrAssign<i16> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: i16)
[src]
impl<Frac> ShrAssign<i32> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: i32)
[src]
impl<Frac> ShrAssign<i64> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: i64)
[src]
impl<Frac> ShrAssign<i8> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: i8)
[src]
impl<Frac> ShrAssign<isize> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: isize)
[src]
impl<Frac> ShrAssign<u128> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: u128)
[src]
impl<Frac> ShrAssign<u16> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: u16)
[src]
impl<Frac> ShrAssign<u32> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: u32)
[src]
impl<Frac> ShrAssign<u64> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: u64)
[src]
impl<Frac> ShrAssign<u8> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: u8)
[src]
impl<Frac> ShrAssign<usize> for FixedI32<Frac>
[src]
fn shr_assign(&mut self, rhs: usize)
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> StaticCast<FixedI128<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI128<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> StaticCast<FixedI16<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI16<FracDst>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for bool
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for i8
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for u128
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for isize
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for usize
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for f32
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for f64
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for f16
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for bf16
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for u8
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for i16
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for u16
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for i32
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for u32
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for i64
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for u64
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<Frac: LeEqU32> StaticCast<FixedI32<Frac>> for i128
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<Frac>>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedI8<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedU8<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedI16<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedU16<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedU32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedI64<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedU64<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedI128<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> StaticCast<FixedI32<FracDst>> for FixedU128<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI32<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> StaticCast<FixedI64<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI64<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> StaticCast<FixedI8<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedI8<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> StaticCast<FixedU128<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedU128<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> StaticCast<FixedU16<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedU16<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> StaticCast<FixedU32<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedU32<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> StaticCast<FixedU64<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedU64<FracDst>>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> StaticCast<FixedU8<FracDst>> for FixedI32<FracSrc>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<FixedU8<FracDst>>
[src]
impl<Frac: LeEqU32> StaticCast<bf16> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<bf16>
[src]
impl<Frac: LeEqU32> StaticCast<f16> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<f16>
[src]
impl<Frac: LeEqU32> StaticCast<f32> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<f32>
[src]
impl<Frac: LeEqU32> StaticCast<f64> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<f64>
[src]
impl<Frac: LeEqU32> StaticCast<i128> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<i128>
[src]
impl<Frac: LeEqU32> StaticCast<i16> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<i16>
[src]
impl<Frac: LeEqU32> StaticCast<i32> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<i32>
[src]
impl<Frac: LeEqU32> StaticCast<i64> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<i64>
[src]
impl<Frac: LeEqU32> StaticCast<i8> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<i8>
[src]
impl<Frac: LeEqU32> StaticCast<isize> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<isize>
[src]
impl<Frac: LeEqU32> StaticCast<u128> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<u128>
[src]
impl<Frac: LeEqU32> StaticCast<u16> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<u16>
[src]
impl<Frac: LeEqU32> StaticCast<u32> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<u32>
[src]
impl<Frac: LeEqU32> StaticCast<u64> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<u64>
[src]
impl<Frac: LeEqU32> StaticCast<u8> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<u8>
[src]
impl<Frac: LeEqU32> StaticCast<usize> for FixedI32<Frac>
[src]
deprecated in az crate since 0.3.1; use case is unclear
fn static_cast(self) -> Option<usize>
[src]
impl<'a, Frac> Sub<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the -
operator.
fn sub(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, 'b, Frac> Sub<&'a FixedI32<Frac>> for &'b FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the -
operator.
fn sub(self, rhs: &FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<Frac> Sub<FixedI32<Frac>> for FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the -
operator.
fn sub(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> Sub<FixedI32<Frac>> for &'a FixedI32<Frac>
[src]
type Output = FixedI32<Frac>
The resulting type after applying the -
operator.
fn sub(self, rhs: FixedI32<Frac>) -> FixedI32<Frac>
[src]
impl<'a, Frac> SubAssign<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
fn sub_assign(&mut self, rhs: &FixedI32<Frac>)
[src]
impl<Frac> SubAssign<FixedI32<Frac>> for FixedI32<Frac>
[src]
fn sub_assign(&mut self, rhs: FixedI32<Frac>)
[src]
impl<'a, Frac: 'a> Sum<&'a FixedI32<Frac>> for FixedI32<Frac>
[src]
impl<Frac> Sum<FixedI32<Frac>> for FixedI32<Frac>
[src]
impl<Frac: LeEqU32> ToFixed for FixedI32<Frac>
[src]
fn to_fixed<F: Fixed>(self) -> F
[src]
Converts a fixed-point number.
Any extra fractional bits are discarded, which rounds towards −∞.
fn checked_to_fixed<F: Fixed>(self) -> Option<F>
[src]
Converts a fixed-point number if it fits, otherwise returns None
.
Any extra fractional bits are discarded, which rounds towards −∞.
fn saturating_to_fixed<F: Fixed>(self) -> F
[src]
Converts a fixed-point number, saturating if it does not fit.
Any extra fractional bits are discarded, which rounds towards −∞.
fn wrapping_to_fixed<F: Fixed>(self) -> F
[src]
Converts a fixed-point number, wrapping if it does not fit.
Any extra fractional bits are discarded, which rounds towards −∞.
fn overflowing_to_fixed<F: Fixed>(self) -> (F, bool)
[src]
impl<Frac: LeEqU32> UpperHex for FixedI32<Frac>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> WrappingCast<FixedI128<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI128<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> WrappingCast<FixedI16<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI16<FracDst>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for bool
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for i8
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for u64
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for u128
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for usize
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for f32
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for f64
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for f16
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for bf16
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for i16
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for i32
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for i64
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for i128
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for isize
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for u8
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for u16
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<Frac: LeEqU32> WrappingCast<FixedI32<Frac>> for u32
[src]
fn wrapping_cast(self) -> FixedI32<Frac>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedI8<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedI16<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedI64<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedI128<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU8, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedU8<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU16, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedU16<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedU32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU64, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedU64<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU128, FracDst: LeEqU32> WrappingCast<FixedI32<FracDst>> for FixedU128<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI32<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> WrappingCast<FixedI64<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI64<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> WrappingCast<FixedI8<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedI8<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU128> WrappingCast<FixedU128<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedU128<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU16> WrappingCast<FixedU16<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedU16<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU32> WrappingCast<FixedU32<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedU32<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU64> WrappingCast<FixedU64<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedU64<FracDst>
[src]
impl<FracSrc: LeEqU32, FracDst: LeEqU8> WrappingCast<FixedU8<FracDst>> for FixedI32<FracSrc>
[src]
fn wrapping_cast(self) -> FixedU8<FracDst>
[src]
impl<Frac: LeEqU32> WrappingCast<bf16> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> bf16
[src]
impl<Frac: LeEqU32> WrappingCast<f16> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> f16
[src]
impl<Frac: LeEqU32> WrappingCast<f32> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> f32
[src]
impl<Frac: LeEqU32> WrappingCast<f64> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> f64
[src]
impl<Frac: LeEqU32> WrappingCast<i128> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> i128
[src]
impl<Frac: LeEqU32> WrappingCast<i16> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> i16
[src]
impl<Frac: LeEqU32> WrappingCast<i32> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> i32
[src]
impl<Frac: LeEqU32> WrappingCast<i64> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> i64
[src]
impl<Frac: LeEqU32> WrappingCast<i8> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> i8
[src]
impl<Frac: LeEqU32> WrappingCast<isize> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> isize
[src]
impl<Frac: LeEqU32> WrappingCast<u128> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> u128
[src]
impl<Frac: LeEqU32> WrappingCast<u16> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> u16
[src]
impl<Frac: LeEqU32> WrappingCast<u32> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> u32
[src]
impl<Frac: LeEqU32> WrappingCast<u64> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> u64
[src]
impl<Frac: LeEqU32> WrappingCast<u8> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> u8
[src]
impl<Frac: LeEqU32> WrappingCast<usize> for FixedI32<Frac>
[src]
fn wrapping_cast(self) -> usize
[src]
Auto Trait Implementations
impl<Frac> RefUnwindSafe for FixedI32<Frac> where
Frac: RefUnwindSafe,
Frac: RefUnwindSafe,
impl<Frac> Send for FixedI32<Frac> where
Frac: Send,
Frac: Send,
impl<Frac> Sync for FixedI32<Frac> where
Frac: Sync,
Frac: Sync,
impl<Frac> Unpin for FixedI32<Frac> where
Frac: Unpin,
Frac: Unpin,
impl<Frac> UnwindSafe for FixedI32<Frac> where
Frac: UnwindSafe,
Frac: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Az for T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> CheckedAs for T
[src]
fn checked_as<Dst>(self) -> Option<Dst> where
T: CheckedCast<Dst>,
[src]
T: CheckedCast<Dst>,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<Src, Dst> LosslessTryInto<Dst> for Src where
Dst: LosslessTryFrom<Src>,
[src]
Dst: LosslessTryFrom<Src>,
fn lossless_try_into(Self) -> Option<Dst>
[src]
impl<Src, Dst> LossyInto<Dst> for Src where
Dst: LossyFrom<Src>,
[src]
Dst: LossyFrom<Src>,
fn lossy_into(Self) -> Dst
[src]
impl<T> OverflowingAs for T
[src]
fn overflowing_as<Dst>(self) -> (Dst, bool) where
T: OverflowingCast<Dst>,
[src]
T: OverflowingCast<Dst>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> SaturatingAs for T
[src]
fn saturating_as<Dst>(self) -> Dst where
T: SaturatingCast<Dst>,
[src]
T: SaturatingCast<Dst>,
impl<T> StaticAs for T
[src]
fn static_as<Dst>(self) -> Option<Dst> where
T: StaticCast<Dst>,
[src]
T: StaticCast<Dst>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> WrappingAs for T
[src]
fn wrapping_as<Dst>(self) -> Dst where
T: WrappingCast<Dst>,
[src]
T: WrappingCast<Dst>,