Trait fidl_fuchsia_net_ext::TryFromExt
source · 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.
Object Safety§
This trait is not object safe.