pub struct AddressInput {
pub mailer_contact_name: Option<String>,
}Expand description
Input for ADDRESS verification.
This type is not used in any activity, and only used as part of another schema.
Fields§
§mailer_contact_name: Option<String>Contact name the mail should be sent to.
Trait Implementations§
Source§impl Clone for AddressInput
impl Clone for AddressInput
Source§fn clone(&self) -> AddressInput
fn clone(&self) -> AddressInput
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 AddressInput
impl Debug for AddressInput
Source§impl Default for AddressInput
impl Default for AddressInput
Source§fn default() -> AddressInput
fn default() -> AddressInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddressInput
impl<'de> Deserialize<'de> for AddressInput
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 Serialize for AddressInput
impl Serialize for AddressInput
impl Part for AddressInput
Auto Trait Implementations§
impl Freeze for AddressInput
impl RefUnwindSafe for AddressInput
impl Send for AddressInput
impl Sync for AddressInput
impl Unpin for AddressInput
impl UnwindSafe for AddressInput
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