Trait cv_convert::TryIntoCv[][src]

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

Fallible type conversion that is analogous to TryInto.

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl<T, U> TryIntoCv<U> for T where
    U: TryFromCv<T>, 
[src]

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

Loading content...