pub struct QuoteApplyResult {
pub quote_tx_id: Option<String>,
pub exchange_rate: Option<String>,
pub from_coin: Option<String>,
pub from_coin_type: Option<String>,
pub to_coin: Option<String>,
pub to_coin_type: Option<String>,
pub from_amount: Option<String>,
pub to_amount: Option<String>,
pub expired_time: Option<String>,
}Fields§
§quote_tx_id: Option<String>§exchange_rate: Option<String>§from_coin: Option<String>§from_coin_type: Option<String>§to_coin: Option<String>§to_coin_type: Option<String>§from_amount: Option<String>§to_amount: Option<String>§expired_time: Option<String>Trait Implementations§
Source§impl Clone for QuoteApplyResult
impl Clone for QuoteApplyResult
Source§fn clone(&self) -> QuoteApplyResult
fn clone(&self) -> QuoteApplyResult
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 QuoteApplyResult
impl Debug for QuoteApplyResult
Source§impl<'de> Deserialize<'de> for QuoteApplyResult
impl<'de> Deserialize<'de> for QuoteApplyResult
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 QuoteApplyResult
impl RefUnwindSafe for QuoteApplyResult
impl Send for QuoteApplyResult
impl Sync for QuoteApplyResult
impl Unpin for QuoteApplyResult
impl UnsafeUnpin for QuoteApplyResult
impl UnwindSafe for QuoteApplyResult
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