ValueKey

Trait ValueKey 

Source
pub trait ValueKey: Any {
    type Type: Any;
}
Expand description

Trait that represents a key of a certain type that can be stored in the Values cache.

Required Associated Types§

Source

type Type: Any

Actual value type that is stored in the Values cache.

You can also use Self as type if you don’t want to make use of a separate key type.

Implementors§