Struct feed_rs::model::MediaCommunity
source · pub struct MediaCommunity {
pub stars_avg: Option<f64>,
pub stars_count: Option<u64>,
pub stars_min: Option<u64>,
pub stars_max: Option<u64>,
pub stats_views: Option<u64>,
pub stats_favorites: Option<u64>,
}
Expand description
Represents a “media:community” item from the RSS Media spec
Fields§
§stars_avg: Option<f64>
Star rating
stars_count: Option<u64>
§stars_min: Option<u64>
§stars_max: Option<u64>
§stats_views: Option<u64>
Statistics on engagement
stats_favorites: Option<u64>
Trait Implementations§
source§impl Clone for MediaCommunity
impl Clone for MediaCommunity
source§fn clone(&self) -> MediaCommunity
fn clone(&self) -> MediaCommunity
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for MediaCommunity
impl Debug for MediaCommunity
source§impl PartialEq for MediaCommunity
impl PartialEq for MediaCommunity
source§fn eq(&self, other: &MediaCommunity) -> bool
fn eq(&self, other: &MediaCommunity) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MediaCommunity
Auto Trait Implementations§
impl RefUnwindSafe for MediaCommunity
impl Send for MediaCommunity
impl Sync for MediaCommunity
impl Unpin for MediaCommunity
impl UnwindSafe for MediaCommunity
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more