scsys-traits 0.3.2

scsys is a collection of primitives and utilities for use throughout the ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
    Appellation: named <module>
    Contrib: @FL03
*/
/// Interface for nameable data-structures
pub trait Named {
    fn name(&self) -> &str;
}
/// [`Appellation`] defines a common interface for establishing a solid name for
/// various entities.
pub trait Appellation {
    fn appellation(&self) -> &str;
}