arcium-primitives 0.6.0

Arcium primitives
Documentation
1
2
3
4
5
/// A trait for structs that have a name, used as domain separators in several contexts.
pub trait Named {
    /// Get the name of the struct, used as a domain separator in several contexts.
    fn get_name() -> String;
}