pub struct EmailAddressFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub email: String,
pub person_link: Url,
}Expand description
Representation of the email_address-full resource
Fields§
§self_link: Option<Url>The canonical link to this resource.
web_link: Option<Url>The canonical human-addressable web link to this resource.
resource_type_link: Option<Url>The link to the WADL description of this resource.
http_etag: Option<String>The value of the HTTP ETag for this resource.
email: StringEmail Address
person_link: UrlPerson
Implementations§
Source§impl EmailAddressFull
impl EmailAddressFull
Sourcepub fn self_(&self) -> Option<EmailAddress>
pub fn self_(&self) -> Option<EmailAddress>
The canonical link to this resource.
pub fn set_self_(&mut self, value: Option<EmailAddress>)
pub fn set_person(&mut self, value: Person)
Trait Implementations§
Source§impl Clone for EmailAddressFull
impl Clone for EmailAddressFull
Source§fn clone(&self) -> EmailAddressFull
fn clone(&self) -> EmailAddressFull
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 EmailAddressFull
impl Debug for EmailAddressFull
Source§impl<'de> Deserialize<'de> for EmailAddressFull
impl<'de> Deserialize<'de> for EmailAddressFull
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 EmailAddressFull
impl PartialEq for EmailAddressFull
Source§impl Serialize for EmailAddressFull
impl Serialize for EmailAddressFull
impl StructuralPartialEq for EmailAddressFull
Auto Trait Implementations§
impl Freeze for EmailAddressFull
impl RefUnwindSafe for EmailAddressFull
impl Send for EmailAddressFull
impl Sync for EmailAddressFull
impl Unpin for EmailAddressFull
impl UnwindSafe for EmailAddressFull
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