pub struct Review {
pub stars: Option<i32>,
pub text: Option<String>,
pub reply: Option<String>,
pub anonymous: bool,
pub html: String,
pub hidden: bool,
pub order_id: Option<OrderId>,
pub author: Option<String>,
pub author_id: Option<i64>,
pub by_bot: bool,
pub reply_by_bot: bool,
}Fields§
§stars: Option<i32>§text: Option<String>§reply: Option<String>§anonymous: bool§html: String§order_id: Option<OrderId>§by_bot: bool§reply_by_bot: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Review
impl RefUnwindSafe for Review
impl Send for Review
impl Sync for Review
impl Unpin 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