ux-primitives 0.2.2

Graphics Primitives for Angular Rust
Documentation
1
2
3
4
5
6
7
8
use super::ViewObject;

/// The Viewable should be implemented by all objects that compose a view.
///
pub trait Viewable {
    /// The view bound to this object.
    fn view(&self) -> Box<dyn ViewObject>;
}