ContainerExt

Trait ContainerExt 

Source
pub trait ContainerExt {
    // Required method
    fn container(self) -> Container;
}
Expand description

A trait that adds a container method to any type that implements IntoView.

Required Methods§

Source

fn container(self) -> Container

Wrap the view in a container.

Implementors§

Source§

impl<T: IntoView + 'static> ContainerExt for T