pub struct GetExtendedClient {
pub email: String,
pub first_name: String,
pub last_name: String,
pub company_name: String,
pub address: Box<GetExtendedClientAllOfAddress>,
}Fields§
§email: StringLogin Email
first_name: StringFirst Name
last_name: StringLast Name
company_name: StringName of the company
address: Box<GetExtendedClientAllOfAddress>Implementations§
Source§impl GetExtendedClient
impl GetExtendedClient
pub fn new( email: String, first_name: String, last_name: String, company_name: String, address: GetExtendedClientAllOfAddress, ) -> GetExtendedClient
Trait Implementations§
Source§impl Clone for GetExtendedClient
impl Clone for GetExtendedClient
Source§fn clone(&self) -> GetExtendedClient
fn clone(&self) -> GetExtendedClient
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 GetExtendedClient
impl Debug for GetExtendedClient
Source§impl Default for GetExtendedClient
impl Default for GetExtendedClient
Source§fn default() -> GetExtendedClient
fn default() -> GetExtendedClient
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetExtendedClient
impl<'de> Deserialize<'de> for GetExtendedClient
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 GetExtendedClient
impl PartialEq for GetExtendedClient
Source§impl Serialize for GetExtendedClient
impl Serialize for GetExtendedClient
impl StructuralPartialEq for GetExtendedClient
Auto Trait Implementations§
impl Freeze for GetExtendedClient
impl RefUnwindSafe for GetExtendedClient
impl Send for GetExtendedClient
impl Sync for GetExtendedClient
impl Unpin for GetExtendedClient
impl UnwindSafe for GetExtendedClient
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