Crate ownables

Crate ownables 

Source
Expand description

§Ownables

A library that defines the Ownable trait and facilitates mutation by moving or reading from the source.

Structs§

TakenGuard
A Guard that handles the taken item’s manipulation and returns it to source on Drop.

Enums§

OwnableCell
A simple container implementation of Ownable, holds the item in the Available variant.

Traits§

Ownable
Defines the core structure of a Container that holds a value which can be moved out and returned to it Allowing mutation by moving and returning, or simply reading directly from it.