Trait az::UnwrappedCast

source ·
pub trait UnwrappedCast<Dst> {
    // Required method
    fn unwrapped_cast(self) -> Dst;
}
Expand description

Used to cast values, panicking if the value does not fit.

It is normally easier to use the UnwrappedAs trait instead of this trait.

§Panics

This trait’s method panics if the value does not fit in the destination, even when debug assertions are not enabled.

§Examples

use az::UnwrappedCast;
let a: u32 = 5i32.unwrapped_cast();
assert_eq!(a, 5);
assert_eq!(UnwrappedCast::<u8>::unwrapped_cast(17.1f32), 17);

The following panics because of overflow.

use az::UnwrappedCast;
let _overflow: u32 = (-5i32).unwrapped_cast();

Required Methods§

source

fn unwrapped_cast(self) -> Dst

Casts the value.

Implementations on Foreign Types§

source§

impl UnwrappedCast<Wrapping<i8>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i8>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<i8>

source§

impl UnwrappedCast<Wrapping<i16>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i16>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<i16>

source§

impl UnwrappedCast<Wrapping<i32>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i32>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<i32>

source§

impl UnwrappedCast<Wrapping<i64>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i64>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<i64>

source§

impl UnwrappedCast<Wrapping<i128>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<i128>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<i128>

source§

impl UnwrappedCast<Wrapping<isize>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<isize>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<isize>

source§

impl UnwrappedCast<Wrapping<u8>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u8>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<u8>

source§

impl UnwrappedCast<Wrapping<u16>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u16>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<u16>

source§

impl UnwrappedCast<Wrapping<u32>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u32>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<u32>

source§

impl UnwrappedCast<Wrapping<u64>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u64>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<u64>

source§

impl UnwrappedCast<Wrapping<u128>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<u128>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<u128>

source§

impl UnwrappedCast<Wrapping<usize>> for bool

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for f32

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for f64

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for i8

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for i16

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for i32

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for i64

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for i128

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for isize

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for u8

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for u16

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for u32

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for u64

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for u128

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<Wrapping<usize>> for usize

source§

fn unwrapped_cast(self) -> Wrapping<usize>

source§

impl UnwrappedCast<f32> for f32

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for f64

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for i8

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for i16

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for i32

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for i64

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for i128

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for isize

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for u8

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for u16

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for u32

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for u64

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for u128

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f32> for usize

source§

fn unwrapped_cast(self) -> f32

source§

impl UnwrappedCast<f64> for f32

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for f64

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for i8

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for i16

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for i32

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for i64

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for i128

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for isize

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for u8

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for u16

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for u32

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for u64

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for u128

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<f64> for usize

source§

fn unwrapped_cast(self) -> f64

source§

impl UnwrappedCast<i8> for bool

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for f32

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for f64

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for i8

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for i16

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for i32

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for i64

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for i128

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for isize

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for u8

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for u16

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for u32

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for u64

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for u128

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i8> for usize

source§

fn unwrapped_cast(self) -> i8

source§

impl UnwrappedCast<i16> for bool

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for f32

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for f64

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for i8

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for i16

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for i32

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for i64

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for i128

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for isize

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for u8

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for u16

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for u32

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for u64

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for u128

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i16> for usize

source§

fn unwrapped_cast(self) -> i16

source§

impl UnwrappedCast<i32> for bool

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for f32

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for f64

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for i8

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for i16

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for i32

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for i64

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for i128

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for isize

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for u8

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for u16

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for u32

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for u64

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for u128

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i32> for usize

source§

fn unwrapped_cast(self) -> i32

source§

impl UnwrappedCast<i64> for bool

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for f32

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for f64

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for i8

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for i16

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for i32

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for i64

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for i128

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for isize

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for u8

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for u16

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for u32

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for u64

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for u128

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i64> for usize

source§

fn unwrapped_cast(self) -> i64

source§

impl UnwrappedCast<i128> for bool

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for f32

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for f64

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for i8

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for i16

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for i32

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for i64

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for i128

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for isize

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for u8

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for u16

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for u32

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for u64

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for u128

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<i128> for usize

source§

fn unwrapped_cast(self) -> i128

source§

impl UnwrappedCast<isize> for bool

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for f32

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for f64

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for i8

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for i16

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for i32

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for i64

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for i128

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for isize

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for u8

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for u16

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for u32

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for u64

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for u128

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<isize> for usize

source§

fn unwrapped_cast(self) -> isize

source§

impl UnwrappedCast<u8> for bool

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for f32

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for f64

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for i8

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for i16

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for i32

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for i64

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for i128

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for isize

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for u8

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for u16

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for u32

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for u64

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for u128

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u8> for usize

source§

fn unwrapped_cast(self) -> u8

source§

impl UnwrappedCast<u16> for bool

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for f32

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for f64

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for i8

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for i16

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for i32

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for i64

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for i128

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for isize

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for u8

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for u16

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for u32

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for u64

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for u128

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u16> for usize

source§

fn unwrapped_cast(self) -> u16

source§

impl UnwrappedCast<u32> for bool

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for f32

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for f64

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for i8

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for i16

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for i32

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for i64

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for i128

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for isize

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for u8

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for u16

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for u32

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for u64

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for u128

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u32> for usize

source§

fn unwrapped_cast(self) -> u32

source§

impl UnwrappedCast<u64> for bool

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for f32

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for f64

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for i8

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for i16

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for i32

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for i64

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for i128

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for isize

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for u8

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for u16

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for u32

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for u64

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for u128

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u64> for usize

source§

fn unwrapped_cast(self) -> u64

source§

impl UnwrappedCast<u128> for bool

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for f32

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for f64

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for i8

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for i16

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for i32

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for i64

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for i128

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for isize

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for u8

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for u16

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for u32

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for u64

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for u128

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<u128> for usize

source§

fn unwrapped_cast(self) -> u128

source§

impl UnwrappedCast<usize> for bool

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for f32

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for f64

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for i8

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for i16

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for i32

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for i64

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for i128

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for isize

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for u8

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for u16

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for u32

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for u64

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for u128

source§

fn unwrapped_cast(self) -> usize

source§

impl UnwrappedCast<usize> for usize

source§

fn unwrapped_cast(self) -> usize

Implementors§

source§

impl UnwrappedCast<Wrapping<i8>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<i8>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<i16>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<i16>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<i32>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<i32>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<i64>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<i64>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<i128>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<i128>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<isize>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<isize>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<u8>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<u8>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<u16>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<u16>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<u32>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<u32>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<u64>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<u64>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<u128>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<u128>> for Round<f64>

source§

impl UnwrappedCast<Wrapping<usize>> for Round<f32>

source§

impl UnwrappedCast<Wrapping<usize>> for Round<f64>

source§

impl UnwrappedCast<i8> for Round<f32>

source§

impl UnwrappedCast<i8> for Round<f64>

source§

impl UnwrappedCast<i16> for Round<f32>

source§

impl UnwrappedCast<i16> for Round<f64>

source§

impl UnwrappedCast<i32> for Round<f32>

source§

impl UnwrappedCast<i32> for Round<f64>

source§

impl UnwrappedCast<i64> for Round<f32>

source§

impl UnwrappedCast<i64> for Round<f64>

source§

impl UnwrappedCast<i128> for Round<f32>

source§

impl UnwrappedCast<i128> for Round<f64>

source§

impl UnwrappedCast<isize> for Round<f32>

source§

impl UnwrappedCast<isize> for Round<f64>

source§

impl UnwrappedCast<u8> for Round<f32>

source§

impl UnwrappedCast<u8> for Round<f64>

source§

impl UnwrappedCast<u16> for Round<f32>

source§

impl UnwrappedCast<u16> for Round<f64>

source§

impl UnwrappedCast<u32> for Round<f32>

source§

impl UnwrappedCast<u32> for Round<f64>

source§

impl UnwrappedCast<u64> for Round<f32>

source§

impl UnwrappedCast<u64> for Round<f64>

source§

impl UnwrappedCast<u128> for Round<f32>

source§

impl UnwrappedCast<u128> for Round<f64>

source§

impl UnwrappedCast<usize> for Round<f32>

source§

impl UnwrappedCast<usize> for Round<f64>