pub trait ArchiveComponentTrait {
    // Required methods
    fn get_holding_archive(&self) -> &[HoldingArchiveProperty];
    fn take_holding_archive(&mut self) -> Vec<HoldingArchiveProperty>;
    fn get_item_location(&self) -> &[ItemLocationProperty];
    fn take_item_location(&mut self) -> Vec<ItemLocationProperty>;
}
Expand description

This trait is for properties from https://schema.org/ArchiveComponent.

Required Methods§

Implementors§