Trait ItemScheme

Source
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.

Required Methods§

Source

fn is_partial(&self) -> Option<bool>

Source

fn items(&self) -> Option<&Vec<Item>>

Source

fn set_items(&mut self, items: Option<Vec<Item>>)

Source

fn clear_items(&mut self)

Source

fn contains_items(&self) -> bool

Implementors§