Expand description
Rust implementation of a monad which provides ownership of an object.
Structs§
- Bind
Owner - An implementation of the
OwnerOnce,OwnerandOwnerMuttraits which contains a mapping from one owner to another; seebind(). - Pure
Owner - An implementation of the
OwnerOnce,OwnerandOwnerMuttraits which simply contains a single (pure) value; seepure().
Traits§
- Owner
- A monad which conditionally provides immutable access to a
Tvalue. - Owner
Mut - A monad which conditionally provides mutable access to a
Tvalue. - Owner
Once - A monad which conditionally provides access to a
Tvalue.