pub trait TvEpisodeTrait {
    // Required methods
    fn get_country_of_origin(&self) -> &[CountryOfOriginProperty];
    fn take_country_of_origin(&mut self) -> Vec<CountryOfOriginProperty>;
    fn get_part_of_tv_series(&self) -> &[PartOfTvSeriesProperty];
    fn take_part_of_tv_series(&mut self) -> Vec<PartOfTvSeriesProperty>;
    fn get_subtitle_language(&self) -> &[SubtitleLanguageProperty];
    fn take_subtitle_language(&mut self) -> Vec<SubtitleLanguageProperty>;
    fn get_title_eidr(&self) -> &[TitleEidrProperty];
    fn take_title_eidr(&mut self) -> Vec<TitleEidrProperty>;
}
Expand description

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

Required Methods§

Implementors§