pub trait IdDimension {
fn set_id(&mut self, id: &str) -> &mut Self;
fn get_id(&self) -> Option<&String>;
}Expand description
A trait to get or set id.
pub trait IdDimension {
fn set_id(&mut self, id: &str) -> &mut Self;
fn get_id(&self) -> Option<&String>;
}A trait to get or set id.