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

Implementations on Foreign Types§

Source§

impl<'a, V: View<'a>> IntoView for &'a V

Source§

type View = <V as View<'a>>::Type

Source§

fn into_view(self) -> Self::View

Source§

impl<'a, V: ViewMut<'a>> IntoView for &'a mut V

Source§

type View = <V as ViewMut<'a>>::Type

Source§

fn into_view(self) -> Self::View

Implementors§