1
2
3
4
pub trait Name {
    fn set_name(self) -> Self;
    fn get_name(&self) -> String;
}