Struct fusionauth_rust_client::models::email_address::EmailAddress
source · pub struct EmailAddress {
pub address: Option<String>,
pub display: Option<String>,
}
Expand description
EmailAddress : An email address.
Fields§
§address: Option<String>
§display: Option<String>
Implementations§
source§impl EmailAddress
impl EmailAddress
sourcepub fn new() -> EmailAddress
pub fn new() -> EmailAddress
An email address.
Trait Implementations§
source§impl Clone for EmailAddress
impl Clone for EmailAddress
source§fn clone(&self) -> EmailAddress
fn clone(&self) -> EmailAddress
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 Debug for EmailAddress
impl Debug for EmailAddress
source§impl Default for EmailAddress
impl Default for EmailAddress
source§fn default() -> EmailAddress
fn default() -> EmailAddress
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for EmailAddress
impl<'de> Deserialize<'de> for EmailAddress
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 EmailAddress
impl PartialEq for EmailAddress
source§fn eq(&self, other: &EmailAddress) -> bool
fn eq(&self, other: &EmailAddress) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for EmailAddress
impl Serialize for EmailAddress
impl StructuralPartialEq for EmailAddress
Auto Trait Implementations§
impl RefUnwindSafe for EmailAddress
impl Send for EmailAddress
impl Sync for EmailAddress
impl Unpin for EmailAddress
impl UnwindSafe for EmailAddress
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