[][src]Trait cv_convert::TryIntoCv

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

Associated Types

Loading content...

Required methods

pub 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...