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.

Object Safety§

This trait is not object safe.

Implementors§