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