fidl_fuchsia_net_ext

Trait IntoExt

Source
pub trait IntoExt<T> {
    // Required method
    fn into_ext(self) -> T;
}
Expand description

A manual implementation of Into.

A blanket implementation is provided for implementers of FromExt<T>.

Required Methods§

Source

fn into_ext(self) -> T

Performs the conversion.

Implementors§

Source§

impl<T, U> IntoExt<U> for T
where U: FromExt<T>,