Trait fidl_fuchsia_net_ext::TryIntoExt
source · pub trait TryIntoExt<T>: Sized {
type Error;
// Required method
fn try_into_ext(self) -> Result<T, Self::Error>;
}
Expand description
A manual implementation of TryInto
.
A blanket implementation is provided for implementers of TryFromExt<T>
.
Required Associated Types§
Required Methods§
sourcefn try_into_ext(self) -> Result<T, Self::Error>
fn try_into_ext(self) -> Result<T, Self::Error>
Tries to perform the conversion.
Object Safety§
This trait is not object safe.