Trait 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 T
where U: TryFromCv<T>,

Source§

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