pub trait TryFromExt<T>: Sized {
type Error;
// Required method
fn try_from_ext(f: T) -> Result<Self, Self::Error>;
}Expand description
A manual implementation of TryFrom.
Required Associated Types§
Required Methods§
Sourcefn try_from_ext(f: T) -> Result<Self, Self::Error>
fn try_from_ext(f: T) -> Result<Self, Self::Error>
Tries to perform the conversion.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".