pub trait TryIntoCv<T> { type Error; // Required method fn try_into_cv(self) -> Result<T, Self::Error>; }
Fallible type conversion that is analogous to TryInto.