pub struct AccountCustomerService {
pub email: Option<String>,
pub phone_number: Option<String>,
pub url: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§email: Option<String>Customer service email.
phone_number: Option<String>Customer service phone number.
url: Option<String>Customer service URL.
Trait Implementations§
Source§impl Clone for AccountCustomerService
impl Clone for AccountCustomerService
Source§fn clone(&self) -> AccountCustomerService
fn clone(&self) -> AccountCustomerService
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 AccountCustomerService
impl Debug for AccountCustomerService
Source§impl Default for AccountCustomerService
impl Default for AccountCustomerService
Source§fn default() -> AccountCustomerService
fn default() -> AccountCustomerService
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountCustomerService
impl<'de> Deserialize<'de> for AccountCustomerService
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 AccountCustomerService
impl Serialize for AccountCustomerService
impl Part for AccountCustomerService
Auto Trait Implementations§
impl Freeze for AccountCustomerService
impl RefUnwindSafe for AccountCustomerService
impl Send for AccountCustomerService
impl Sync for AccountCustomerService
impl Unpin for AccountCustomerService
impl UnwindSafe for AccountCustomerService
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