pub struct PrivateGetSubaccountsResponse {Show 15 fields
pub email: String,
pub id: i64,
pub is_password: bool,
pub login_enabled: Option<bool>,
pub margin_model: Option<String>,
pub not_confirmed_email: Option<String>,
pub portfolio: Option<Portfolio>,
pub proof_id: Option<String>,
pub proof_id_signature: Option<String>,
pub receive_notifications: bool,
pub security_keys_assignments: Option<Vec<Value>>,
pub security_keys_enabled: Option<bool>,
pub system_name: String,
pub type: PrivateGetSubaccountsResponseType,
pub username: String,
}Fields§
§email: String§id: i64§is_password: bool§login_enabled: Option<bool>§margin_model: Option<String>§not_confirmed_email: Option<String>§portfolio: Option<Portfolio>§proof_id: Option<String>§proof_id_signature: Option<String>§receive_notifications: bool§security_keys_assignments: Option<Vec<Value>>§security_keys_enabled: Option<bool>§system_name: String§type: PrivateGetSubaccountsResponseType§username: StringTrait Implementations§
Source§impl Clone for PrivateGetSubaccountsResponse
impl Clone for PrivateGetSubaccountsResponse
Source§fn clone(&self) -> PrivateGetSubaccountsResponse
fn clone(&self) -> PrivateGetSubaccountsResponse
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 Default for PrivateGetSubaccountsResponse
impl Default for PrivateGetSubaccountsResponse
Source§fn default() -> PrivateGetSubaccountsResponse
fn default() -> PrivateGetSubaccountsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateGetSubaccountsResponse
impl<'de> Deserialize<'de> for PrivateGetSubaccountsResponse
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 PrivateGetSubaccountsResponse
impl PartialEq for PrivateGetSubaccountsResponse
Source§fn eq(&self, other: &PrivateGetSubaccountsResponse) -> bool
fn eq(&self, other: &PrivateGetSubaccountsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateGetSubaccountsResponse
Auto Trait Implementations§
impl Freeze for PrivateGetSubaccountsResponse
impl RefUnwindSafe for PrivateGetSubaccountsResponse
impl Send for PrivateGetSubaccountsResponse
impl Sync for PrivateGetSubaccountsResponse
impl Unpin for PrivateGetSubaccountsResponse
impl UnwindSafe for PrivateGetSubaccountsResponse
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