pub struct SteamReviewSummary {
pub review_score: u32,
pub review_score_desc: String,
pub total_positive: u32,
pub total_negative: u32,
pub total_reviews: u32,
}Fields§
§review_score: u32§review_score_desc: String§total_positive: u32§total_negative: u32§total_reviews: u32Trait Implementations§
Source§impl Clone for SteamReviewSummary
impl Clone for SteamReviewSummary
Source§fn clone(&self) -> SteamReviewSummary
fn clone(&self) -> SteamReviewSummary
Returns a duplicate 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 SteamReviewSummary
impl Debug for SteamReviewSummary
Source§impl<'de> Deserialize<'de> for SteamReviewSummary
impl<'de> Deserialize<'de> for SteamReviewSummary
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 SteamReviewSummary
impl RefUnwindSafe for SteamReviewSummary
impl Send for SteamReviewSummary
impl Sync for SteamReviewSummary
impl Unpin for SteamReviewSummary
impl UnwindSafe for SteamReviewSummary
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