pub struct Review {Show 13 fields
pub id: String,
pub plugin_name: String,
pub version: String,
pub user: UserInfo,
pub rating: u8,
pub comment: String,
pub title: Option<String>,
pub helpful_count: u32,
pub unhelpful_count: u32,
pub verified: bool,
pub created_at: String,
pub updated_at: String,
pub author_response: Option<AuthorResponse>,
}Expand description
Plugin review
Fields§
§id: StringReview ID
plugin_name: StringPlugin name
version: StringPlugin version reviewed
user: UserInfoUser information
rating: u8Rating (1-5)
comment: StringReview text
title: Option<String>Review title
helpful_count: u32Helpful votes count
unhelpful_count: u32Unhelpful votes count
verified: boolVerified purchase
created_at: StringCreated timestamp
updated_at: StringUpdated timestamp
Response from author
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Review
impl<'de> Deserialize<'de> for Review
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 Review
impl RefUnwindSafe for Review
impl Send for Review
impl Sync for Review
impl Unpin for Review
impl UnsafeUnpin for Review
impl UnwindSafe for Review
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