pub trait CreativeWorkSeriesTrait {
    // Required methods
    fn get_end_date(&self) -> &[EndDateProperty];
    fn take_end_date(&mut self) -> Vec<EndDateProperty>;
    fn get_issn(&self) -> &[IssnProperty];
    fn take_issn(&mut self) -> Vec<IssnProperty>;
    fn get_start_date(&self) -> &[StartDateProperty];
    fn take_start_date(&mut self) -> Vec<StartDateProperty>;
}
Expand description

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

Required Methods§

source

fn get_end_date(&self) -> &[EndDateProperty]

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

source

fn take_end_date(&mut self) -> Vec<EndDateProperty>

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

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.

source

fn get_start_date(&self) -> &[StartDateProperty]

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

source

fn take_start_date(&mut self) -> Vec<StartDateProperty>

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

Implementors§