Skip to main content

Views

Trait Views 

Source
pub trait Views:
    Sized
    + Send
    + Sync
    + 'static {
    // Required method
    fn from_builder(builder: ViewBuilder) -> Self;
}
Expand description

Trait for generated view accessor structs.

Required Methods§

Source

fn from_builder(builder: ViewBuilder) -> Self

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§