pub trait ItemScheme {
// Required methods
fn is_partial(&self) -> Option<bool>;
fn items(&self) -> Option<&Vec<Item>>;
fn set_items(&mut self, items: Option<Vec<Item>>);
fn clear_items(&mut self);
fn contains_items(&self) -> bool;
}
Expand description
A primitive type which may or may not contain zero or more items, where said items may either be a subset or full collection.