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