pub trait AggregateRatingTrait {
    // Required methods
    fn get_item_reviewed(&self) -> &[ItemReviewedProperty];
    fn take_item_reviewed(&mut self) -> Vec<ItemReviewedProperty>;
    fn get_rating_count(&self) -> &[RatingCountProperty];
    fn take_rating_count(&mut self) -> Vec<RatingCountProperty>;
    fn get_review_count(&self) -> &[ReviewCountProperty];
    fn take_review_count(&mut self) -> Vec<ReviewCountProperty>;
}
Expand description

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

Required Methods§

Implementors§