pub struct RatingsCounts {
pub one: Option<u64>,
pub two: Option<u64>,
pub three: Option<u64>,
pub four: Option<u64>,
pub five: Option<u64>,
}Fields§
§one: Option<u64>§two: Option<u64>§three: Option<u64>§four: Option<u64>§five: Option<u64>Trait Implementations§
Source§impl Clone for RatingsCounts
impl Clone for RatingsCounts
Source§fn clone(&self) -> RatingsCounts
fn clone(&self) -> RatingsCounts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RatingsCounts
impl Debug for RatingsCounts
Source§impl<'de> Deserialize<'de> for RatingsCounts
impl<'de> Deserialize<'de> for RatingsCounts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RatingsCounts
impl RefUnwindSafe for RatingsCounts
impl Send for RatingsCounts
impl Sync for RatingsCounts
impl Unpin for RatingsCounts
impl UnsafeUnpin for RatingsCounts
impl UnwindSafe for RatingsCounts
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