1/* 2 Appellation: named <module> 3 Contrib: @FL03 4*/ 5/// Interface for nameable data-structures 6pub trait Named { 7 fn name(&self) -> &str; 8} 9 10pub trait Appellation { 11 fn appellation(&self) -> &str; 12}