pub trait TvClipTrait {
    // Required methods
    fn get_part_of_tv_series(&self) -> &[PartOfTvSeriesProperty];
    fn take_part_of_tv_series(&mut self) -> Vec<PartOfTvSeriesProperty>;
}
Expand description

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

Required Methods§

source

fn get_part_of_tv_series(&self) -> &[PartOfTvSeriesProperty]

👎Deprecated: This schema is superseded by https://schema.org/partOfSeries.

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

source

fn take_part_of_tv_series(&mut self) -> Vec<PartOfTvSeriesProperty>

👎Deprecated: This schema is superseded by https://schema.org/partOfSeries.

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

Implementors§