pub struct UserResponseObject {Show 20 fields
pub public_id: String,
pub ethereum_address: String,
pub is_registered: bool,
pub email: Option<String>,
pub username: Option<String>,
pub user_data: Value,
pub maker_fee_rate: Option<String>,
pub taker_fee_rate: Option<String>,
pub maker_volume30_d: Option<String>,
pub taker_volume30_d: Option<String>,
pub fees30_d: Option<String>,
pub referred_by_affiliate_link: Option<String>,
pub is_sharing_username: Option<bool>,
pub is_sharing_address: Option<bool>,
pub dydx_token_balance: String,
pub staked_dydx_token_balance: String,
pub active_staked_dydx_token_balance: String,
pub is_email_verified: bool,
pub country: Option<String>,
pub hedgies_held: Vec<usize>,
}Fields§
§public_id: String§ethereum_address: String§is_registered: bool§email: Option<String>§username: Option<String>§user_data: Value§maker_fee_rate: Option<String>§taker_fee_rate: Option<String>§maker_volume30_d: Option<String>§taker_volume30_d: Option<String>§fees30_d: Option<String>§referred_by_affiliate_link: Option<String>§is_sharing_username: Option<bool>§is_sharing_address: Option<bool>§dydx_token_balance: String§staked_dydx_token_balance: String§active_staked_dydx_token_balance: String§is_email_verified: bool§country: Option<String>§hedgies_held: Vec<usize>Trait Implementations§
Source§impl Clone for UserResponseObject
impl Clone for UserResponseObject
Source§fn clone(&self) -> UserResponseObject
fn clone(&self) -> UserResponseObject
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 UserResponseObject
impl Debug for UserResponseObject
Source§impl<'de> Deserialize<'de> for UserResponseObject
impl<'de> Deserialize<'de> for UserResponseObject
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 UserResponseObject
impl RefUnwindSafe for UserResponseObject
impl Send for UserResponseObject
impl Sync for UserResponseObject
impl Unpin for UserResponseObject
impl UnwindSafe for UserResponseObject
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