pub trait View: Nodewhere
    Self::Information: Clone,
    Self::Subresource: Into<Subresource>,
{ type Information; type Subresource; }
Expand description

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

Required Associated Types

The information about the resource interpretation.

The portion of the resource which is bound.

Implementors