willow25 0.7.8

A ready-to-use implementation of the Willow specifications.
Documentation
1
2
3
4
5
6
7
use crate::prelude::NamespaceId;

/// 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 {
    /// Returns the [namespace id](https://willowprotocol.org/specs/data-model/index.html#NamespaceId) of `self`.
    fn namespace_id(&self) -> &NamespaceId;
}