pub struct EmailUnsubscribeInput {
pub type: Option<String>,
pub token: Option<String>,
pub user_id: Option<String>,
}Fields§
§type: Option<String>Email type to unsubscribe from.
token: Option<String>The user’s email validation token.
user_id: Option<String>The identifier of the user.
Trait Implementations§
Source§impl Clone for EmailUnsubscribeInput
impl Clone for EmailUnsubscribeInput
Source§fn clone(&self) -> EmailUnsubscribeInput
fn clone(&self) -> EmailUnsubscribeInput
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 EmailUnsubscribeInput
impl Debug for EmailUnsubscribeInput
Source§impl Default for EmailUnsubscribeInput
impl Default for EmailUnsubscribeInput
Source§fn default() -> EmailUnsubscribeInput
fn default() -> EmailUnsubscribeInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmailUnsubscribeInput
impl<'de> Deserialize<'de> for EmailUnsubscribeInput
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
Auto Trait Implementations§
impl Freeze for EmailUnsubscribeInput
impl RefUnwindSafe for EmailUnsubscribeInput
impl Send for EmailUnsubscribeInput
impl Sync for EmailUnsubscribeInput
impl Unpin for EmailUnsubscribeInput
impl UnwindSafe for EmailUnsubscribeInput
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