willow-data-model 0.7.0

The core datatypes of Willow, an eventually consistent data store with improved distributed deletion.
Documentation
1
2
3
4
5
/// A namespaced value is one with an associated [namespace id](https://willowprotocol.org/specs/data-model/index.html#NamespaceId) (of type `N`).
pub trait Namespaced<N> {
    /// Returns the [namespace id](https://willowprotocol.org/specs/data-model/index.html#NamespaceId) of `self`.
    fn wdm_namespace_id(&self) -> &N;
}