pub trait WebSiteTrait {
    // Required methods
    fn get_issn(&self) -> &[IssnProperty];
    fn take_issn(&mut self) -> Vec<IssnProperty>;
}
Expand description

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

Required Methods§

source

fn get_issn(&self) -> &[IssnProperty]

Get https://schema.org/issn from Self as borrowed slice.

source

fn take_issn(&mut self) -> Vec<IssnProperty>

Take https://schema.org/issn from Self as owned vector.

Implementors§