pub struct TokenProduct {
pub coin: Option<String>,
pub status: Option<String>,
pub apr: Option<String>,
pub min_purchase_amount: Option<String>,
pub max_purchase_amount: Option<String>,
}Fields§
§coin: Option<String>§status: Option<String>§apr: Option<String>§min_purchase_amount: Option<String>§max_purchase_amount: Option<String>Trait Implementations§
Source§impl Clone for TokenProduct
impl Clone for TokenProduct
Source§fn clone(&self) -> TokenProduct
fn clone(&self) -> TokenProduct
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 TokenProduct
impl Debug for TokenProduct
Source§impl<'de> Deserialize<'de> for TokenProduct
impl<'de> Deserialize<'de> for TokenProduct
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 TokenProduct
impl RefUnwindSafe for TokenProduct
impl Send for TokenProduct
impl Sync for TokenProduct
impl Unpin for TokenProduct
impl UnsafeUnpin for TokenProduct
impl UnwindSafe for TokenProduct
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