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.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors