pub struct CancellationDetails {
pub comment: Option<String>,
pub feedback: Option<CancellationDetailsFeedback>,
pub reason: Option<CancellationDetailsReason>,
}
Fields§
§comment: Option<String>
Additional comments about why the user canceled the subscription, if the subscription was canceled explicitly by the user.
feedback: Option<CancellationDetailsFeedback>
The customer submitted reason for why they canceled, if the subscription was canceled explicitly by the user.
reason: Option<CancellationDetailsReason>
Why this subscription was canceled.
Trait Implementations§
Source§impl Clone for CancellationDetails
impl Clone for CancellationDetails
Source§fn clone(&self) -> CancellationDetails
fn clone(&self) -> CancellationDetails
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 CancellationDetails
impl Debug for CancellationDetails
Source§impl Deserialize for CancellationDetails
impl Deserialize for CancellationDetails
Source§impl FromValueOpt for CancellationDetails
impl FromValueOpt for CancellationDetails
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for CancellationDetails
impl RefUnwindSafe for CancellationDetails
impl Send for CancellationDetails
impl Sync for CancellationDetails
impl Unpin for CancellationDetails
impl UnwindSafe for CancellationDetails
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