View

Trait View 

Source
pub trait View: Node{
    type Information;
    type Subresource;
}
Expand description

Allows for a resource to be reinterpreted as differently formatted data.

Required Associated Types§

Source

type Information

The information about the resource interpretation.

Source

type Subresource

The portion of the resource which is bound.

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§