pub struct EarnProduct {
pub category: Option<String>,
pub estimate_apr: Option<String>,
pub coin: Option<String>,
pub min_stake_amount: Option<String>,
pub max_stake_amount: Option<String>,
pub precision: Option<String>,
pub product_id: Option<String>,
pub status: Option<String>,
}Fields§
§category: Option<String>§estimate_apr: Option<String>§coin: Option<String>§min_stake_amount: Option<String>§max_stake_amount: Option<String>§precision: Option<String>§product_id: Option<String>§status: Option<String>Trait Implementations§
Source§impl Clone for EarnProduct
impl Clone for EarnProduct
Source§fn clone(&self) -> EarnProduct
fn clone(&self) -> EarnProduct
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 EarnProduct
impl Debug for EarnProduct
Source§impl<'de> Deserialize<'de> for EarnProduct
impl<'de> Deserialize<'de> for EarnProduct
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 EarnProduct
impl RefUnwindSafe for EarnProduct
impl Send for EarnProduct
impl Sync for EarnProduct
impl Unpin for EarnProduct
impl UnsafeUnpin for EarnProduct
impl UnwindSafe for EarnProduct
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