pub struct LMProduct {
pub product_id: String,
pub base_coin: String,
pub quote_coin: String,
pub status: String,
pub min_leverage: String,
pub max_leverage: String,
pub min_quote_amount: String,
pub max_quote_amount: String,
pub min_base_amount: String,
pub max_base_amount: String,
pub apy: String,
pub precision: i32,
}Fields§
§product_id: String§base_coin: String§quote_coin: String§status: String§min_leverage: String§max_leverage: String§min_quote_amount: String§max_quote_amount: String§min_base_amount: String§max_base_amount: String§apy: String§precision: i32Trait Implementations§
Source§impl<'de> Deserialize<'de> for LMProduct
impl<'de> Deserialize<'de> for LMProduct
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 LMProduct
impl RefUnwindSafe for LMProduct
impl Send for LMProduct
impl Sync for LMProduct
impl Unpin for LMProduct
impl UnsafeUnpin for LMProduct
impl UnwindSafe for LMProduct
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