pub struct GetClientsResponseClient {Show 13 fields
pub client: Option<u64>,
pub email: Option<String>,
pub password: Option<String>,
pub company: Option<String>,
pub firstname: Option<String>,
pub lastname: Option<String>,
pub address: Option<String>,
pub city: Option<String>,
pub state: Option<String>,
pub country: Option<String>,
pub zip: Option<u64>,
pub phone_number: Option<u64>,
pub balance_management: Option<u64>,
}Expand description
Response body for Client::get_clients (wire method getClients).
Fields§
§client: Option<u64>§email: Option<String>§password: Option<String>§company: Option<String>§firstname: Option<String>§lastname: Option<String>§address: Option<String>§city: Option<String>§state: Option<String>§country: Option<String>§zip: Option<u64>§phone_number: Option<u64>§balance_management: Option<u64>Trait Implementations§
Source§impl Clone for GetClientsResponseClient
impl Clone for GetClientsResponseClient
Source§fn clone(&self) -> GetClientsResponseClient
fn clone(&self) -> GetClientsResponseClient
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetClientsResponseClient
impl Debug for GetClientsResponseClient
Source§impl Default for GetClientsResponseClient
impl Default for GetClientsResponseClient
Source§fn default() -> GetClientsResponseClient
fn default() -> GetClientsResponseClient
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetClientsResponseClient
impl<'de> Deserialize<'de> for GetClientsResponseClient
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
Auto Trait Implementations§
impl Freeze for GetClientsResponseClient
impl RefUnwindSafe for GetClientsResponseClient
impl Send for GetClientsResponseClient
impl Sync for GetClientsResponseClient
impl Unpin for GetClientsResponseClient
impl UnsafeUnpin for GetClientsResponseClient
impl UnwindSafe for GetClientsResponseClient
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