[][src]Trait scales::prelude::ToInt

pub trait ToInt<I> {
    pub fn to_int(self) -> I;
}

Something that can be converted to an integral number.

Required methods

pub fn to_int(self) -> I[src]

Convert self into an integral number.

Loading content...

Implementors

impl<F, I> ToInt<I> for F where
    I: FromFloat<F>, 
[src]

Loading content...