pub struct GetConvertTradeHistoryResponseListInner {
pub quote_id: Option<String>,
pub order_id: Option<i64>,
pub order_status: Option<String>,
pub from_asset: Option<String>,
pub from_amount: Option<String>,
pub to_asset: Option<String>,
pub to_amount: Option<String>,
pub ratio: Option<String>,
pub inverse_ratio: Option<String>,
pub create_time: Option<i64>,
}Fields§
§quote_id: Option<String>§order_id: Option<i64>§order_status: Option<String>Order status
from_asset: Option<String>Source asset
from_amount: Option<String>Source amount
to_asset: Option<String>Destination asset
to_amount: Option<String>Destination amount
ratio: Option<String>Price ratio
inverse_ratio: Option<String>Inverse price ratio
create_time: Option<i64>Implementations§
Trait Implementations§
Source§impl Clone for GetConvertTradeHistoryResponseListInner
impl Clone for GetConvertTradeHistoryResponseListInner
Source§fn clone(&self) -> GetConvertTradeHistoryResponseListInner
fn clone(&self) -> GetConvertTradeHistoryResponseListInner
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 Default for GetConvertTradeHistoryResponseListInner
impl Default for GetConvertTradeHistoryResponseListInner
Source§fn default() -> GetConvertTradeHistoryResponseListInner
fn default() -> GetConvertTradeHistoryResponseListInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetConvertTradeHistoryResponseListInner
impl<'de> Deserialize<'de> for GetConvertTradeHistoryResponseListInner
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
impl StructuralPartialEq for GetConvertTradeHistoryResponseListInner
Auto Trait Implementations§
impl Freeze for GetConvertTradeHistoryResponseListInner
impl RefUnwindSafe for GetConvertTradeHistoryResponseListInner
impl Send for GetConvertTradeHistoryResponseListInner
impl Sync for GetConvertTradeHistoryResponseListInner
impl Unpin for GetConvertTradeHistoryResponseListInner
impl UnsafeUnpin for GetConvertTradeHistoryResponseListInner
impl UnwindSafe for GetConvertTradeHistoryResponseListInner
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