pub struct ProjectEmailAddress {
pub email_address: Option<String>,
pub email_address_status: Option<Vec<String>>,
}
Expand description
ProjectEmailAddress : A project’s sender email address.
Fields§
§email_address: Option<String>
The email address.
email_address_status: Option<Vec<String>>
When using a custom domain, the status of the email address.
Implementations§
Source§impl ProjectEmailAddress
impl ProjectEmailAddress
Sourcepub fn new() -> ProjectEmailAddress
pub fn new() -> ProjectEmailAddress
A project’s sender email address.
Trait Implementations§
Source§impl Clone for ProjectEmailAddress
impl Clone for ProjectEmailAddress
Source§fn clone(&self) -> ProjectEmailAddress
fn clone(&self) -> ProjectEmailAddress
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 ProjectEmailAddress
impl Debug for ProjectEmailAddress
Source§impl Default for ProjectEmailAddress
impl Default for ProjectEmailAddress
Source§fn default() -> ProjectEmailAddress
fn default() -> ProjectEmailAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectEmailAddress
impl<'de> Deserialize<'de> for ProjectEmailAddress
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 ProjectEmailAddress
impl PartialEq for ProjectEmailAddress
Source§impl Serialize for ProjectEmailAddress
impl Serialize for ProjectEmailAddress
impl StructuralPartialEq for ProjectEmailAddress
Auto Trait Implementations§
impl Freeze for ProjectEmailAddress
impl RefUnwindSafe for ProjectEmailAddress
impl Send for ProjectEmailAddress
impl Sync for ProjectEmailAddress
impl Unpin for ProjectEmailAddress
impl UnwindSafe for ProjectEmailAddress
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