Expand description
this module defines the [Get
] trait for establishing a common interface for
retrieving values from a store.
Traitsยง
- Get
Get
defines an interface for entities that can be accessed by a key; the design is similar to theIndex
trait in the standard library, however, uses theBorrow
trait to allow for more flexible key types.- GetMut
GetMut
defines an interface for entities that can be accessed by a key; the design is similar to theIndexMut
trait in the standard library