Trait cv_convert::TryIntoCv[][src]

pub trait TryIntoCv<T> {
    type Error;
    fn try_into_cv(self) -> Result<T, Self::Error>;
}
Expand description

Fallible type conversion that is analogous to TryInto.

Associated Types

Required methods

Implementors