pub trait HyperTocTrait {
    // Required methods
    fn get_associated_media(&self) -> &[AssociatedMediaProperty];
    fn take_associated_media(&mut self) -> Vec<AssociatedMediaProperty>;
    fn get_toc_entry(&self) -> &[TocEntryProperty];
    fn take_toc_entry(&mut self) -> Vec<TocEntryProperty>;
}
Expand description

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

Required Methods§

Implementors§