pub struct PriceQuote {
pub select_price: Option<String>,
pub apy_e8: Option<i64>,
pub max_investment_amount: Option<String>,
pub expired_at: Option<String>,
}Fields§
§select_price: Option<String>§apy_e8: Option<i64>§max_investment_amount: Option<String>§expired_at: Option<String>Trait Implementations§
Source§impl Clone for PriceQuote
impl Clone for PriceQuote
Source§fn clone(&self) -> PriceQuote
fn clone(&self) -> PriceQuote
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 PriceQuote
impl Debug for PriceQuote
Source§impl<'de> Deserialize<'de> for PriceQuote
impl<'de> Deserialize<'de> for PriceQuote
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 PriceQuote
impl RefUnwindSafe for PriceQuote
impl Send for PriceQuote
impl Sync for PriceQuote
impl Unpin for PriceQuote
impl UnsafeUnpin for PriceQuote
impl UnwindSafe for PriceQuote
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