Trait cv_convert::TryIntoCv

source ·
pub trait TryIntoCv<T> {
    type Error;

    // Required method
    fn try_into_cv(self) -> Result<T, Self::Error>;
}
Expand description

Fallible type conversion that is analogous to TryInto.

Required Associated Types§

Required Methods§

source

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

Implementors§

source§

impl<T, U> TryIntoCv<U> for Twhere U: TryFromCv<T>,

§

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