Viewable

Trait Viewable 

Source
pub trait Viewable {
    // Required methods
    fn name() -> &'static str;
    fn fields() -> &'static [&'static dyn ViewableField];
}

Required Methods§

Source

fn name() -> &'static str

Source

fn fields() -> &'static [&'static dyn ViewableField]

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§