Structs§
- Boxed
- Boxed resource, wrapped in a
Box. - Plain
- Plain resource: no wrapper.
- Resource
Id - A unique identifier of a resource.
- Shared
- Shared resource, wrapped in an
Arc. - Unique
- Wrapper for resources that only support one consumer.
Traits§
- Resource
- A trait for anything that can be stored (and retrieved) as a resource.
- Resource
Kind - Marker trait for
Resourcekinds. The kind determines wrapper for a resource: no wrapper,ArcorBox.