Trait az::UnwrappedCast[][src]

pub trait UnwrappedCast<Dst> {
    fn unwrapped_cast(self) -> Dst;
}

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

fn unwrapped_cast(self) -> Dst[src]

Casts the value.

Loading content...

Implementors

impl UnwrappedCast<Wrapping<i8>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<i8>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<i8>> for bool[src]

impl UnwrappedCast<Wrapping<i8>> for f32[src]

impl UnwrappedCast<Wrapping<i8>> for f64[src]

impl UnwrappedCast<Wrapping<i8>> for i8[src]

impl UnwrappedCast<Wrapping<i8>> for i16[src]

impl UnwrappedCast<Wrapping<i8>> for i32[src]

impl UnwrappedCast<Wrapping<i8>> for i64[src]

impl UnwrappedCast<Wrapping<i8>> for i128[src]

impl UnwrappedCast<Wrapping<i8>> for isize[src]

impl UnwrappedCast<Wrapping<i8>> for u8[src]

impl UnwrappedCast<Wrapping<i8>> for u16[src]

impl UnwrappedCast<Wrapping<i8>> for u32[src]

impl UnwrappedCast<Wrapping<i8>> for u64[src]

impl UnwrappedCast<Wrapping<i8>> for u128[src]

impl UnwrappedCast<Wrapping<i8>> for usize[src]

impl UnwrappedCast<Wrapping<i16>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<i16>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<i16>> for bool[src]

impl UnwrappedCast<Wrapping<i16>> for f32[src]

impl UnwrappedCast<Wrapping<i16>> for f64[src]

impl UnwrappedCast<Wrapping<i16>> for i8[src]

impl UnwrappedCast<Wrapping<i16>> for i16[src]

impl UnwrappedCast<Wrapping<i16>> for i32[src]

impl UnwrappedCast<Wrapping<i16>> for i64[src]

impl UnwrappedCast<Wrapping<i16>> for i128[src]

impl UnwrappedCast<Wrapping<i16>> for isize[src]

impl UnwrappedCast<Wrapping<i16>> for u8[src]

impl UnwrappedCast<Wrapping<i16>> for u16[src]

impl UnwrappedCast<Wrapping<i16>> for u32[src]

impl UnwrappedCast<Wrapping<i16>> for u64[src]

impl UnwrappedCast<Wrapping<i16>> for u128[src]

impl UnwrappedCast<Wrapping<i16>> for usize[src]

impl UnwrappedCast<Wrapping<i32>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<i32>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<i32>> for bool[src]

impl UnwrappedCast<Wrapping<i32>> for f32[src]

impl UnwrappedCast<Wrapping<i32>> for f64[src]

impl UnwrappedCast<Wrapping<i32>> for i8[src]

impl UnwrappedCast<Wrapping<i32>> for i16[src]

impl UnwrappedCast<Wrapping<i32>> for i32[src]

impl UnwrappedCast<Wrapping<i32>> for i64[src]

impl UnwrappedCast<Wrapping<i32>> for i128[src]

impl UnwrappedCast<Wrapping<i32>> for isize[src]

impl UnwrappedCast<Wrapping<i32>> for u8[src]

impl UnwrappedCast<Wrapping<i32>> for u16[src]

impl UnwrappedCast<Wrapping<i32>> for u32[src]

impl UnwrappedCast<Wrapping<i32>> for u64[src]

impl UnwrappedCast<Wrapping<i32>> for u128[src]

impl UnwrappedCast<Wrapping<i32>> for usize[src]

impl UnwrappedCast<Wrapping<i64>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<i64>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<i64>> for bool[src]

impl UnwrappedCast<Wrapping<i64>> for f32[src]

impl UnwrappedCast<Wrapping<i64>> for f64[src]

impl UnwrappedCast<Wrapping<i64>> for i8[src]

impl UnwrappedCast<Wrapping<i64>> for i16[src]

impl UnwrappedCast<Wrapping<i64>> for i32[src]

impl UnwrappedCast<Wrapping<i64>> for i64[src]

impl UnwrappedCast<Wrapping<i64>> for i128[src]

impl UnwrappedCast<Wrapping<i64>> for isize[src]

impl UnwrappedCast<Wrapping<i64>> for u8[src]

impl UnwrappedCast<Wrapping<i64>> for u16[src]

impl UnwrappedCast<Wrapping<i64>> for u32[src]

impl UnwrappedCast<Wrapping<i64>> for u64[src]

impl UnwrappedCast<Wrapping<i64>> for u128[src]

impl UnwrappedCast<Wrapping<i64>> for usize[src]

impl UnwrappedCast<Wrapping<i128>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<i128>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<i128>> for bool[src]

impl UnwrappedCast<Wrapping<i128>> for f32[src]

impl UnwrappedCast<Wrapping<i128>> for f64[src]

impl UnwrappedCast<Wrapping<i128>> for i8[src]

impl UnwrappedCast<Wrapping<i128>> for i16[src]

impl UnwrappedCast<Wrapping<i128>> for i32[src]

impl UnwrappedCast<Wrapping<i128>> for i64[src]

impl UnwrappedCast<Wrapping<i128>> for i128[src]

impl UnwrappedCast<Wrapping<i128>> for isize[src]

impl UnwrappedCast<Wrapping<i128>> for u8[src]

impl UnwrappedCast<Wrapping<i128>> for u16[src]

impl UnwrappedCast<Wrapping<i128>> for u32[src]

impl UnwrappedCast<Wrapping<i128>> for u64[src]

impl UnwrappedCast<Wrapping<i128>> for u128[src]

impl UnwrappedCast<Wrapping<i128>> for usize[src]

impl UnwrappedCast<Wrapping<isize>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<isize>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<isize>> for bool[src]

impl UnwrappedCast<Wrapping<isize>> for f32[src]

impl UnwrappedCast<Wrapping<isize>> for f64[src]

impl UnwrappedCast<Wrapping<isize>> for i8[src]

impl UnwrappedCast<Wrapping<isize>> for i16[src]

impl UnwrappedCast<Wrapping<isize>> for i32[src]

impl UnwrappedCast<Wrapping<isize>> for i64[src]

impl UnwrappedCast<Wrapping<isize>> for i128[src]

impl UnwrappedCast<Wrapping<isize>> for isize[src]

impl UnwrappedCast<Wrapping<isize>> for u8[src]

impl UnwrappedCast<Wrapping<isize>> for u16[src]

impl UnwrappedCast<Wrapping<isize>> for u32[src]

impl UnwrappedCast<Wrapping<isize>> for u64[src]

impl UnwrappedCast<Wrapping<isize>> for u128[src]

impl UnwrappedCast<Wrapping<isize>> for usize[src]

impl UnwrappedCast<Wrapping<u8>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<u8>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<u8>> for bool[src]

impl UnwrappedCast<Wrapping<u8>> for f32[src]

impl UnwrappedCast<Wrapping<u8>> for f64[src]

impl UnwrappedCast<Wrapping<u8>> for i8[src]

impl UnwrappedCast<Wrapping<u8>> for i16[src]

impl UnwrappedCast<Wrapping<u8>> for i32[src]

impl UnwrappedCast<Wrapping<u8>> for i64[src]

impl UnwrappedCast<Wrapping<u8>> for i128[src]

impl UnwrappedCast<Wrapping<u8>> for isize[src]

impl UnwrappedCast<Wrapping<u8>> for u8[src]

impl UnwrappedCast<Wrapping<u8>> for u16[src]

impl UnwrappedCast<Wrapping<u8>> for u32[src]

impl UnwrappedCast<Wrapping<u8>> for u64[src]

impl UnwrappedCast<Wrapping<u8>> for u128[src]

impl UnwrappedCast<Wrapping<u8>> for usize[src]

impl UnwrappedCast<Wrapping<u16>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<u16>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<u16>> for bool[src]

impl UnwrappedCast<Wrapping<u16>> for f32[src]

impl UnwrappedCast<Wrapping<u16>> for f64[src]

impl UnwrappedCast<Wrapping<u16>> for i8[src]

impl UnwrappedCast<Wrapping<u16>> for i16[src]

impl UnwrappedCast<Wrapping<u16>> for i32[src]

impl UnwrappedCast<Wrapping<u16>> for i64[src]

impl UnwrappedCast<Wrapping<u16>> for i128[src]

impl UnwrappedCast<Wrapping<u16>> for isize[src]

impl UnwrappedCast<Wrapping<u16>> for u8[src]

impl UnwrappedCast<Wrapping<u16>> for u16[src]

impl UnwrappedCast<Wrapping<u16>> for u32[src]

impl UnwrappedCast<Wrapping<u16>> for u64[src]

impl UnwrappedCast<Wrapping<u16>> for u128[src]

impl UnwrappedCast<Wrapping<u16>> for usize[src]

impl UnwrappedCast<Wrapping<u32>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<u32>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<u32>> for bool[src]

impl UnwrappedCast<Wrapping<u32>> for f32[src]

impl UnwrappedCast<Wrapping<u32>> for f64[src]

impl UnwrappedCast<Wrapping<u32>> for i8[src]

impl UnwrappedCast<Wrapping<u32>> for i16[src]

impl UnwrappedCast<Wrapping<u32>> for i32[src]

impl UnwrappedCast<Wrapping<u32>> for i64[src]

impl UnwrappedCast<Wrapping<u32>> for i128[src]

impl UnwrappedCast<Wrapping<u32>> for isize[src]

impl UnwrappedCast<Wrapping<u32>> for u8[src]

impl UnwrappedCast<Wrapping<u32>> for u16[src]

impl UnwrappedCast<Wrapping<u32>> for u32[src]

impl UnwrappedCast<Wrapping<u32>> for u64[src]

impl UnwrappedCast<Wrapping<u32>> for u128[src]

impl UnwrappedCast<Wrapping<u32>> for usize[src]

impl UnwrappedCast<Wrapping<u64>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<u64>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<u64>> for bool[src]

impl UnwrappedCast<Wrapping<u64>> for f32[src]

impl UnwrappedCast<Wrapping<u64>> for f64[src]

impl UnwrappedCast<Wrapping<u64>> for i8[src]

impl UnwrappedCast<Wrapping<u64>> for i16[src]

impl UnwrappedCast<Wrapping<u64>> for i32[src]

impl UnwrappedCast<Wrapping<u64>> for i64[src]

impl UnwrappedCast<Wrapping<u64>> for i128[src]

impl UnwrappedCast<Wrapping<u64>> for isize[src]

impl UnwrappedCast<Wrapping<u64>> for u8[src]

impl UnwrappedCast<Wrapping<u64>> for u16[src]

impl UnwrappedCast<Wrapping<u64>> for u32[src]

impl UnwrappedCast<Wrapping<u64>> for u64[src]

impl UnwrappedCast<Wrapping<u64>> for u128[src]

impl UnwrappedCast<Wrapping<u64>> for usize[src]

impl UnwrappedCast<Wrapping<u128>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<u128>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<u128>> for bool[src]

impl UnwrappedCast<Wrapping<u128>> for f32[src]

impl UnwrappedCast<Wrapping<u128>> for f64[src]

impl UnwrappedCast<Wrapping<u128>> for i8[src]

impl UnwrappedCast<Wrapping<u128>> for i16[src]

impl UnwrappedCast<Wrapping<u128>> for i32[src]

impl UnwrappedCast<Wrapping<u128>> for i64[src]

impl UnwrappedCast<Wrapping<u128>> for i128[src]

impl UnwrappedCast<Wrapping<u128>> for isize[src]

impl UnwrappedCast<Wrapping<u128>> for u8[src]

impl UnwrappedCast<Wrapping<u128>> for u16[src]

impl UnwrappedCast<Wrapping<u128>> for u32[src]

impl UnwrappedCast<Wrapping<u128>> for u64[src]

impl UnwrappedCast<Wrapping<u128>> for u128[src]

impl UnwrappedCast<Wrapping<u128>> for usize[src]

impl UnwrappedCast<Wrapping<usize>> for Round<f32>[src]

impl UnwrappedCast<Wrapping<usize>> for Round<f64>[src]

impl UnwrappedCast<Wrapping<usize>> for bool[src]

impl UnwrappedCast<Wrapping<usize>> for f32[src]

impl UnwrappedCast<Wrapping<usize>> for f64[src]

impl UnwrappedCast<Wrapping<usize>> for i8[src]

impl UnwrappedCast<Wrapping<usize>> for i16[src]

impl UnwrappedCast<Wrapping<usize>> for i32[src]

impl UnwrappedCast<Wrapping<usize>> for i64[src]

impl UnwrappedCast<Wrapping<usize>> for i128[src]

impl UnwrappedCast<Wrapping<usize>> for isize[src]

impl UnwrappedCast<Wrapping<usize>> for u8[src]

impl UnwrappedCast<Wrapping<usize>> for u16[src]

impl UnwrappedCast<Wrapping<usize>> for u32[src]

impl UnwrappedCast<Wrapping<usize>> for u64[src]

impl UnwrappedCast<Wrapping<usize>> for u128[src]

impl UnwrappedCast<Wrapping<usize>> for usize[src]

impl UnwrappedCast<f32> for f32[src]

impl UnwrappedCast<f32> for f64[src]

impl UnwrappedCast<f32> for i8[src]

impl UnwrappedCast<f32> for i16[src]

impl UnwrappedCast<f32> for i32[src]

impl UnwrappedCast<f32> for i64[src]

impl UnwrappedCast<f32> for i128[src]

impl UnwrappedCast<f32> for isize[src]

impl UnwrappedCast<f32> for u8[src]

impl UnwrappedCast<f32> for u16[src]

impl UnwrappedCast<f32> for u32[src]

impl UnwrappedCast<f32> for u64[src]

impl UnwrappedCast<f32> for u128[src]

impl UnwrappedCast<f32> for usize[src]

impl UnwrappedCast<f64> for f32[src]

impl UnwrappedCast<f64> for f64[src]

impl UnwrappedCast<f64> for i8[src]

impl UnwrappedCast<f64> for i16[src]

impl UnwrappedCast<f64> for i32[src]

impl UnwrappedCast<f64> for i64[src]

impl UnwrappedCast<f64> for i128[src]

impl UnwrappedCast<f64> for isize[src]

impl UnwrappedCast<f64> for u8[src]

impl UnwrappedCast<f64> for u16[src]

impl UnwrappedCast<f64> for u32[src]

impl UnwrappedCast<f64> for u64[src]

impl UnwrappedCast<f64> for u128[src]

impl UnwrappedCast<f64> for usize[src]

impl UnwrappedCast<i8> for Round<f32>[src]

impl UnwrappedCast<i8> for Round<f64>[src]

impl UnwrappedCast<i8> for bool[src]

impl UnwrappedCast<i8> for f32[src]

impl UnwrappedCast<i8> for f64[src]

impl UnwrappedCast<i8> for i8[src]

impl UnwrappedCast<i8> for i16[src]

impl UnwrappedCast<i8> for i32[src]

impl UnwrappedCast<i8> for i64[src]

impl UnwrappedCast<i8> for i128[src]

impl UnwrappedCast<i8> for isize[src]

impl UnwrappedCast<i8> for u8[src]

impl UnwrappedCast<i8> for u16[src]

impl UnwrappedCast<i8> for u32[src]

impl UnwrappedCast<i8> for u64[src]

impl UnwrappedCast<i8> for u128[src]

impl UnwrappedCast<i8> for usize[src]

impl UnwrappedCast<i16> for Round<f32>[src]

impl UnwrappedCast<i16> for Round<f64>[src]

impl UnwrappedCast<i16> for bool[src]

impl UnwrappedCast<i16> for f32[src]

impl UnwrappedCast<i16> for f64[src]

impl UnwrappedCast<i16> for i8[src]

impl UnwrappedCast<i16> for i16[src]

impl UnwrappedCast<i16> for i32[src]

impl UnwrappedCast<i16> for i64[src]

impl UnwrappedCast<i16> for i128[src]

impl UnwrappedCast<i16> for isize[src]

impl UnwrappedCast<i16> for u8[src]

impl UnwrappedCast<i16> for u16[src]

impl UnwrappedCast<i16> for u32[src]

impl UnwrappedCast<i16> for u64[src]

impl UnwrappedCast<i16> for u128[src]

impl UnwrappedCast<i16> for usize[src]

impl UnwrappedCast<i32> for Round<f32>[src]

impl UnwrappedCast<i32> for Round<f64>[src]

impl UnwrappedCast<i32> for bool[src]

impl UnwrappedCast<i32> for f32[src]

impl UnwrappedCast<i32> for f64[src]

impl UnwrappedCast<i32> for i8[src]

impl UnwrappedCast<i32> for i16[src]

impl UnwrappedCast<i32> for i32[src]

impl UnwrappedCast<i32> for i64[src]

impl UnwrappedCast<i32> for i128[src]

impl UnwrappedCast<i32> for isize[src]

impl UnwrappedCast<i32> for u8[src]

impl UnwrappedCast<i32> for u16[src]

impl UnwrappedCast<i32> for u32[src]

impl UnwrappedCast<i32> for u64[src]

impl UnwrappedCast<i32> for u128[src]

impl UnwrappedCast<i32> for usize[src]

impl UnwrappedCast<i64> for Round<f32>[src]

impl UnwrappedCast<i64> for Round<f64>[src]

impl UnwrappedCast<i64> for bool[src]

impl UnwrappedCast<i64> for f32[src]

impl UnwrappedCast<i64> for f64[src]

impl UnwrappedCast<i64> for i8[src]

impl UnwrappedCast<i64> for i16[src]

impl UnwrappedCast<i64> for i32[src]

impl UnwrappedCast<i64> for i64[src]

impl UnwrappedCast<i64> for i128[src]

impl UnwrappedCast<i64> for isize[src]

impl UnwrappedCast<i64> for u8[src]

impl UnwrappedCast<i64> for u16[src]

impl UnwrappedCast<i64> for u32[src]

impl UnwrappedCast<i64> for u64[src]

impl UnwrappedCast<i64> for u128[src]

impl UnwrappedCast<i64> for usize[src]

impl UnwrappedCast<i128> for Round<f32>[src]

impl UnwrappedCast<i128> for Round<f64>[src]

impl UnwrappedCast<i128> for bool[src]

impl UnwrappedCast<i128> for f32[src]

impl UnwrappedCast<i128> for f64[src]

impl UnwrappedCast<i128> for i8[src]

impl UnwrappedCast<i128> for i16[src]

impl UnwrappedCast<i128> for i32[src]

impl UnwrappedCast<i128> for i64[src]

impl UnwrappedCast<i128> for i128[src]

impl UnwrappedCast<i128> for isize[src]

impl UnwrappedCast<i128> for u8[src]

impl UnwrappedCast<i128> for u16[src]

impl UnwrappedCast<i128> for u32[src]

impl UnwrappedCast<i128> for u64[src]

impl UnwrappedCast<i128> for u128[src]

impl UnwrappedCast<i128> for usize[src]

impl UnwrappedCast<isize> for Round<f32>[src]

impl UnwrappedCast<isize> for Round<f64>[src]

impl UnwrappedCast<isize> for bool[src]

impl UnwrappedCast<isize> for f32[src]

impl UnwrappedCast<isize> for f64[src]

impl UnwrappedCast<isize> for i8[src]

impl UnwrappedCast<isize> for i16[src]

impl UnwrappedCast<isize> for i32[src]

impl UnwrappedCast<isize> for i64[src]

impl UnwrappedCast<isize> for i128[src]

impl UnwrappedCast<isize> for isize[src]

impl UnwrappedCast<isize> for u8[src]

impl UnwrappedCast<isize> for u16[src]

impl UnwrappedCast<isize> for u32[src]

impl UnwrappedCast<isize> for u64[src]

impl UnwrappedCast<isize> for u128[src]

impl UnwrappedCast<isize> for usize[src]

impl UnwrappedCast<u8> for Round<f32>[src]

impl UnwrappedCast<u8> for Round<f64>[src]

impl UnwrappedCast<u8> for bool[src]

impl UnwrappedCast<u8> for f32[src]

impl UnwrappedCast<u8> for f64[src]

impl UnwrappedCast<u8> for i8[src]

impl UnwrappedCast<u8> for i16[src]

impl UnwrappedCast<u8> for i32[src]

impl UnwrappedCast<u8> for i64[src]

impl UnwrappedCast<u8> for i128[src]

impl UnwrappedCast<u8> for isize[src]

impl UnwrappedCast<u8> for u8[src]

impl UnwrappedCast<u8> for u16[src]

impl UnwrappedCast<u8> for u32[src]

impl UnwrappedCast<u8> for u64[src]

impl UnwrappedCast<u8> for u128[src]

impl UnwrappedCast<u8> for usize[src]

impl UnwrappedCast<u16> for Round<f32>[src]

impl UnwrappedCast<u16> for Round<f64>[src]

impl UnwrappedCast<u16> for bool[src]

impl UnwrappedCast<u16> for f32[src]

impl UnwrappedCast<u16> for f64[src]

impl UnwrappedCast<u16> for i8[src]

impl UnwrappedCast<u16> for i16[src]

impl UnwrappedCast<u16> for i32[src]

impl UnwrappedCast<u16> for i64[src]

impl UnwrappedCast<u16> for i128[src]

impl UnwrappedCast<u16> for isize[src]

impl UnwrappedCast<u16> for u8[src]

impl UnwrappedCast<u16> for u16[src]

impl UnwrappedCast<u16> for u32[src]

impl UnwrappedCast<u16> for u64[src]

impl UnwrappedCast<u16> for u128[src]

impl UnwrappedCast<u16> for usize[src]

impl UnwrappedCast<u32> for Round<f32>[src]

impl UnwrappedCast<u32> for Round<f64>[src]

impl UnwrappedCast<u32> for bool[src]

impl UnwrappedCast<u32> for f32[src]

impl UnwrappedCast<u32> for f64[src]

impl UnwrappedCast<u32> for i8[src]

impl UnwrappedCast<u32> for i16[src]

impl UnwrappedCast<u32> for i32[src]

impl UnwrappedCast<u32> for i64[src]

impl UnwrappedCast<u32> for i128[src]

impl UnwrappedCast<u32> for isize[src]

impl UnwrappedCast<u32> for u8[src]

impl UnwrappedCast<u32> for u16[src]

impl UnwrappedCast<u32> for u32[src]

impl UnwrappedCast<u32> for u64[src]

impl UnwrappedCast<u32> for u128[src]

impl UnwrappedCast<u32> for usize[src]

impl UnwrappedCast<u64> for Round<f32>[src]

impl UnwrappedCast<u64> for Round<f64>[src]

impl UnwrappedCast<u64> for bool[src]

impl UnwrappedCast<u64> for f32[src]

impl UnwrappedCast<u64> for f64[src]

impl UnwrappedCast<u64> for i8[src]

impl UnwrappedCast<u64> for i16[src]

impl UnwrappedCast<u64> for i32[src]

impl UnwrappedCast<u64> for i64[src]

impl UnwrappedCast<u64> for i128[src]

impl UnwrappedCast<u64> for isize[src]

impl UnwrappedCast<u64> for u8[src]

impl UnwrappedCast<u64> for u16[src]

impl UnwrappedCast<u64> for u32[src]

impl UnwrappedCast<u64> for u64[src]

impl UnwrappedCast<u64> for u128[src]

impl UnwrappedCast<u64> for usize[src]

impl UnwrappedCast<u128> for Round<f32>[src]

impl UnwrappedCast<u128> for Round<f64>[src]

impl UnwrappedCast<u128> for bool[src]

impl UnwrappedCast<u128> for f32[src]

impl UnwrappedCast<u128> for f64[src]

impl UnwrappedCast<u128> for i8[src]

impl UnwrappedCast<u128> for i16[src]

impl UnwrappedCast<u128> for i32[src]

impl UnwrappedCast<u128> for i64[src]

impl UnwrappedCast<u128> for i128[src]

impl UnwrappedCast<u128> for isize[src]

impl UnwrappedCast<u128> for u8[src]

impl UnwrappedCast<u128> for u16[src]

impl UnwrappedCast<u128> for u32[src]

impl UnwrappedCast<u128> for u64[src]

impl UnwrappedCast<u128> for u128[src]

impl UnwrappedCast<u128> for usize[src]

impl UnwrappedCast<usize> for Round<f32>[src]

impl UnwrappedCast<usize> for Round<f64>[src]

impl UnwrappedCast<usize> for bool[src]

impl UnwrappedCast<usize> for f32[src]

impl UnwrappedCast<usize> for f64[src]

impl UnwrappedCast<usize> for i8[src]

impl UnwrappedCast<usize> for i16[src]

impl UnwrappedCast<usize> for i32[src]

impl UnwrappedCast<usize> for i64[src]

impl UnwrappedCast<usize> for i128[src]

impl UnwrappedCast<usize> for isize[src]

impl UnwrappedCast<usize> for u8[src]

impl UnwrappedCast<usize> for u16[src]

impl UnwrappedCast<usize> for u32[src]

impl UnwrappedCast<usize> for u64[src]

impl UnwrappedCast<usize> for u128[src]

impl UnwrappedCast<usize> for usize[src]

Loading content...