pub struct UnrestrictedUserEmail {
pub account_id: Option<String>,
pub email: Option<String>,
}
Fields§
§account_id: Option<String>
The accountId of the user
email: Option<String>
The email of the user
Implementations§
Source§impl UnrestrictedUserEmail
impl UnrestrictedUserEmail
pub fn new() -> UnrestrictedUserEmail
Trait Implementations§
Source§impl Clone for UnrestrictedUserEmail
impl Clone for UnrestrictedUserEmail
Source§fn clone(&self) -> UnrestrictedUserEmail
fn clone(&self) -> UnrestrictedUserEmail
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 UnrestrictedUserEmail
impl Debug for UnrestrictedUserEmail
Source§impl Default for UnrestrictedUserEmail
impl Default for UnrestrictedUserEmail
Source§fn default() -> UnrestrictedUserEmail
fn default() -> UnrestrictedUserEmail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnrestrictedUserEmail
impl<'de> Deserialize<'de> for UnrestrictedUserEmail
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 UnrestrictedUserEmail
impl PartialEq for UnrestrictedUserEmail
Source§impl Serialize for UnrestrictedUserEmail
impl Serialize for UnrestrictedUserEmail
impl StructuralPartialEq for UnrestrictedUserEmail
Auto Trait Implementations§
impl Freeze for UnrestrictedUserEmail
impl RefUnwindSafe for UnrestrictedUserEmail
impl Send for UnrestrictedUserEmail
impl Sync for UnrestrictedUserEmail
impl Unpin for UnrestrictedUserEmail
impl UnwindSafe for UnrestrictedUserEmail
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