pub enum ReviewClosedReason {
Approved,
Canceled,
Disputed,
Redacted,
Refunded,
RefundedAsFraud,
}
Expand description
The reason the review was closed, or null if it has not yet been closed.
One of approved
, refunded
, refunded_as_fraud
, disputed
, redacted
, or canceled
.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ReviewClosedReason
impl Clone for ReviewClosedReason
Source§fn clone(&self) -> ReviewClosedReason
fn clone(&self) -> ReviewClosedReason
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 ReviewClosedReason
impl Debug for ReviewClosedReason
Source§impl Deserialize for ReviewClosedReason
impl Deserialize for ReviewClosedReason
Source§impl Display for ReviewClosedReason
impl Display for ReviewClosedReason
Source§impl FromStr for ReviewClosedReason
impl FromStr for ReviewClosedReason
Source§impl FromValueOpt for ReviewClosedReason
impl FromValueOpt for ReviewClosedReason
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for ReviewClosedReason
impl PartialEq for ReviewClosedReason
impl Copy for ReviewClosedReason
impl Eq for ReviewClosedReason
impl StructuralPartialEq for ReviewClosedReason
Auto Trait Implementations§
impl Freeze for ReviewClosedReason
impl RefUnwindSafe for ReviewClosedReason
impl Send for ReviewClosedReason
impl Sync for ReviewClosedReason
impl Unpin for ReviewClosedReason
impl UnwindSafe for ReviewClosedReason
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