pub trait Itemable { // Required method fn to_item(&self, documents: &Documents) -> Result<Item>; }
Something that can be converted into an Item using a [Document]
Item
Document
This can be an item, but also a DocumentHandle
DocumentHandle
Convert this itemable into an Item