pub trait MediaReviewTrait {
    // Required methods
    fn get_media_authenticity_category(
        &self
    ) -> &[MediaAuthenticityCategoryProperty];
    fn take_media_authenticity_category(
        &mut self
    ) -> Vec<MediaAuthenticityCategoryProperty>;
    fn get_original_media_context_description(
        &self
    ) -> &[OriginalMediaContextDescriptionProperty];
    fn take_original_media_context_description(
        &mut self
    ) -> Vec<OriginalMediaContextDescriptionProperty>;
    fn get_original_media_link(&self) -> &[OriginalMediaLinkProperty];
    fn take_original_media_link(&mut self) -> Vec<OriginalMediaLinkProperty>;
}
Expand description

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

Required Methods§

Implementors§