pub trait ToUint {
    type Uint;

    // Required method
    fn to_uint(self) -> Self::Uint;
}

Required Associated Types§

Required Methods§

source

fn to_uint(self) -> Self::Uint

Implementations on Foreign Types§

source§

impl ToUint for f32

§

type Uint = u32

source§

fn to_uint(self) -> Self::Uint

source§

impl ToUint for f64

§

type Uint = u64

source§

fn to_uint(self) -> Self::Uint

Implementors§