Trait cv_convert::TryFromCv
source · [−]pub trait TryFromCv<T> where
Self: Sized, {
type Error;
fn try_from_cv(from: T) -> Result<Self, Self::Error>;
}Expand description
Fallible type conversion that is analogous to TryFrom.
pub trait TryFromCv<T> where
Self: Sized, {
type Error;
fn try_from_cv(from: T) -> Result<Self, Self::Error>;
}Fallible type conversion that is analogous to TryFrom.