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.

Required Methods

Sets value as id.

Gets id value if present.

Implementors