Trait TryIntoCv
cv_convert
pub trait TryIntoCv<T> { type Error; pub fn try_into_cv(self) -> Result<T, Self::Error>; }
type Error
pub fn try_into_cv(self) -> Result<T, Self::Error>
impl<T, U> TryIntoCv<U> for T where U: TryFromCv<T>,
type Error = <U as TryFromCv<T>>::Error
pub fn try_into_cv(self) -> Result<U, Self::Error>