pub struct RatingCommentPage {
pub total_items: u64,
pub page_number: u64,
pub comments: Vec<RatingComment>,
}Expand description
A page of comments left on a game by a user. Can include a rating or a text comment or both.
Fields§
§total_items: u64The total number of comments overall, not the number in this page.
page_number: u64The index of this page, starting from 1.
comments: Vec<RatingComment>A list of members in this guid.
Trait Implementations§
Source§impl Clone for RatingCommentPage
impl Clone for RatingCommentPage
Source§fn clone(&self) -> RatingCommentPage
fn clone(&self) -> RatingCommentPage
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 RatingCommentPage
impl Debug for RatingCommentPage
Source§impl<'de> Deserialize<'de> for RatingCommentPage
impl<'de> Deserialize<'de> for RatingCommentPage
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
Source§impl PartialEq for RatingCommentPage
impl PartialEq for RatingCommentPage
impl StructuralPartialEq for RatingCommentPage
Auto Trait Implementations§
impl Freeze for RatingCommentPage
impl RefUnwindSafe for RatingCommentPage
impl Send for RatingCommentPage
impl Sync for RatingCommentPage
impl Unpin for RatingCommentPage
impl UnwindSafe for RatingCommentPage
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