pub trait ResourceHandle: Copy + Eq + Hash + From<RawHandle> + Into<RawHandle> { }
Expand description

A generalization of a handle that represents an object managed by a Device.

In most cases, all objects and resources that are managed by a Device provide some sort of handle that we can use to refer to them. Almost all operations performed on a Device that use an object or resource require making requests using a handle.

Implementors§