pub struct UserAllOfNotificationEmail {
pub email: Option<String>,
pub is_confirmed: Option<bool>,
}Expand description
UserAllOfNotificationEmail : An alternate notification email address to which email notifications are sent. When it’s confirmed, this will be the email address to which notifications are sent instead of to the primary email address.
Fields§
§email: Option<String>The email address to send the notifications to.
is_confirmed: Option<bool>Specifies if this email address has been confirmed.
Implementations§
Source§impl UserAllOfNotificationEmail
impl UserAllOfNotificationEmail
Sourcepub fn new() -> UserAllOfNotificationEmail
pub fn new() -> UserAllOfNotificationEmail
An alternate notification email address to which email notifications are sent. When it’s confirmed, this will be the email address to which notifications are sent instead of to the primary email address.
Trait Implementations§
Source§impl Clone for UserAllOfNotificationEmail
impl Clone for UserAllOfNotificationEmail
Source§fn clone(&self) -> UserAllOfNotificationEmail
fn clone(&self) -> UserAllOfNotificationEmail
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 UserAllOfNotificationEmail
impl Debug for UserAllOfNotificationEmail
Source§impl Default for UserAllOfNotificationEmail
impl Default for UserAllOfNotificationEmail
Source§fn default() -> UserAllOfNotificationEmail
fn default() -> UserAllOfNotificationEmail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserAllOfNotificationEmail
impl<'de> Deserialize<'de> for UserAllOfNotificationEmail
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
impl StructuralPartialEq for UserAllOfNotificationEmail
Auto Trait Implementations§
impl Freeze for UserAllOfNotificationEmail
impl RefUnwindSafe for UserAllOfNotificationEmail
impl Send for UserAllOfNotificationEmail
impl Sync for UserAllOfNotificationEmail
impl Unpin for UserAllOfNotificationEmail
impl UnwindSafe for UserAllOfNotificationEmail
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