logo
pub trait Viewable {
    fn view(&self) -> Box<dyn ViewObject>;
}
Expand description

The Viewable should be implemented by all objects that compose a view.

Required Methods

The view bound to this object.

Implementors