muse2::inputTrait IDCollection
Source pub trait IDCollection {
// Required method
fn get_id(&self, id: &str) -> Result<Rc<str>>;
}
Expand description
A data structure containing a set of IDs
Get the ID after checking that it exists this collection.
§Arguments
§Returns
A copy of the Rc<str>
in self
or an error if not found.