#[non_exhaustive]pub enum ReviewClosedReason {
Acknowledged,
Approved,
Canceled,
Disputed,
PaymentNeverSettled,
Redacted,
Refunded,
RefundedAsFraud,
Unknown(String),
}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, canceled, payment_never_settled, or acknowledged.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Acknowledged
Approved
Canceled
Disputed
PaymentNeverSettled
Redacted
Refunded
RefundedAsFraud
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
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 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