pub struct SubscriptionCancellationRequestModel {
pub reason: Option<String>,
pub feedback: Option<String>,
}
Fields§
§reason: Option<String>
§feedback: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for SubscriptionCancellationRequestModel
impl Clone for SubscriptionCancellationRequestModel
Source§fn clone(&self) -> SubscriptionCancellationRequestModel
fn clone(&self) -> SubscriptionCancellationRequestModel
Returns a copy 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 Default for SubscriptionCancellationRequestModel
impl Default for SubscriptionCancellationRequestModel
Source§fn default() -> SubscriptionCancellationRequestModel
fn default() -> SubscriptionCancellationRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SubscriptionCancellationRequestModel
impl<'de> Deserialize<'de> for SubscriptionCancellationRequestModel
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
Source§impl PartialEq for SubscriptionCancellationRequestModel
impl PartialEq for SubscriptionCancellationRequestModel
Source§fn eq(&self, other: &SubscriptionCancellationRequestModel) -> bool
fn eq(&self, other: &SubscriptionCancellationRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SubscriptionCancellationRequestModel
Auto Trait Implementations§
impl Freeze for SubscriptionCancellationRequestModel
impl RefUnwindSafe for SubscriptionCancellationRequestModel
impl Send for SubscriptionCancellationRequestModel
impl Sync for SubscriptionCancellationRequestModel
impl Unpin for SubscriptionCancellationRequestModel
impl UnwindSafe for SubscriptionCancellationRequestModel
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