pub struct SimpleAccountResponse {
pub total_amount_in_btc: Option<String>,
pub total_amount_in_usdt: Option<String>,
pub total_flexible_amount_in_btc: Option<String>,
pub total_flexible_amount_in_usdt: Option<String>,
pub total_locked_in_btc: Option<String>,
pub total_locked_in_usdt: Option<String>,
}Fields§
§total_amount_in_btc: Option<String>§total_amount_in_usdt: Option<String>§total_flexible_amount_in_btc: Option<String>§total_flexible_amount_in_usdt: Option<String>§total_locked_in_btc: Option<String>§total_locked_in_usdt: Option<String>Implementations§
Source§impl SimpleAccountResponse
impl SimpleAccountResponse
pub fn new() -> SimpleAccountResponse
Trait Implementations§
Source§impl Clone for SimpleAccountResponse
impl Clone for SimpleAccountResponse
Source§fn clone(&self) -> SimpleAccountResponse
fn clone(&self) -> SimpleAccountResponse
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 SimpleAccountResponse
impl Debug for SimpleAccountResponse
Source§impl Default for SimpleAccountResponse
impl Default for SimpleAccountResponse
Source§fn default() -> SimpleAccountResponse
fn default() -> SimpleAccountResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SimpleAccountResponse
impl<'de> Deserialize<'de> for SimpleAccountResponse
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 SimpleAccountResponse
impl PartialEq for SimpleAccountResponse
Source§fn eq(&self, other: &SimpleAccountResponse) -> bool
fn eq(&self, other: &SimpleAccountResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SimpleAccountResponse
impl Serialize for SimpleAccountResponse
impl StructuralPartialEq for SimpleAccountResponse
Auto Trait Implementations§
impl Freeze for SimpleAccountResponse
impl RefUnwindSafe for SimpleAccountResponse
impl Send for SimpleAccountResponse
impl Sync for SimpleAccountResponse
impl Unpin for SimpleAccountResponse
impl UnsafeUnpin for SimpleAccountResponse
impl UnwindSafe for SimpleAccountResponse
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