Skip to main content

IntoView

Trait IntoView 

Source
pub trait IntoView {
    type View;

    // Required method
    fn into_view(self) -> Self::View;
}

Required Associated Types§

Required Methods§

Source

fn into_view(self) -> Self::View

Implementors§

Source§

impl<T> IntoView for T
where T: Sized,

Source§

type View = T