Trait exact_conv::ExactInto[][src]

pub trait ExactInto<T> {
    type Error;
    fn exact_into(self) -> Result<T, Self::Error>;
}

Associated Types

Loading content...

Required methods

fn exact_into(self) -> Result<T, Self::Error>[src]

Loading content...

Implementors

impl<T, U> ExactInto<U> for T where
    U: ExactFrom<T>, 
[src]

type Error = <U as ExactFrom<T>>::Error

Loading content...