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