pub trait Identifiable { // Required method fn get_id(&self) -> String; }
A trait for types that have an ID.
Returns the ID of the object.