pub struct BswapLiquidityResponseItemLiquidity {
pub busd: f64,
pub usdt: f64,
}
Expand description
BswapLiquidityResponseItemLiquidity
JSON schema
{
"type": "object",
"required": [
"BUSD",
"USDT"
],
"properties": {
"BUSD": {
"examples": [
100000315.79
],
"type": "number",
"format": "double"
},
"USDT": {
"examples": [
99999245.54
],
"type": "number",
"format": "double"
}
}
}
Fields§
§busd: f64
§usdt: f64
Trait Implementations§
Source§impl Clone for BswapLiquidityResponseItemLiquidity
impl Clone for BswapLiquidityResponseItemLiquidity
Source§fn clone(&self) -> BswapLiquidityResponseItemLiquidity
fn clone(&self) -> BswapLiquidityResponseItemLiquidity
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<'de> Deserialize<'de> for BswapLiquidityResponseItemLiquidity
impl<'de> Deserialize<'de> for BswapLiquidityResponseItemLiquidity
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 From<&BswapLiquidityResponseItemLiquidity> for BswapLiquidityResponseItemLiquidity
impl From<&BswapLiquidityResponseItemLiquidity> for BswapLiquidityResponseItemLiquidity
Source§fn from(value: &BswapLiquidityResponseItemLiquidity) -> Self
fn from(value: &BswapLiquidityResponseItemLiquidity) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BswapLiquidityResponseItemLiquidity
impl RefUnwindSafe for BswapLiquidityResponseItemLiquidity
impl Send for BswapLiquidityResponseItemLiquidity
impl Sync for BswapLiquidityResponseItemLiquidity
impl Unpin for BswapLiquidityResponseItemLiquidity
impl UnwindSafe for BswapLiquidityResponseItemLiquidity
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