Trait fidl_fuchsia_net_ext::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>,