pub struct IndexPriceData {
pub index_price: f64,
pub estimated_delivery_price: f64,
}Expand description
Index price data
Fields§
§index_price: f64Current index price
estimated_delivery_price: f64Estimated delivery price
Trait Implementations§
Source§impl Clone for IndexPriceData
impl Clone for IndexPriceData
Source§fn clone(&self) -> IndexPriceData
fn clone(&self) -> IndexPriceData
Returns a duplicate of the value. Read more
1.0.0 · 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 IndexPriceData
impl Debug for IndexPriceData
Source§impl<'de> Deserialize<'de> for IndexPriceData
impl<'de> Deserialize<'de> for IndexPriceData
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
Source§impl Display for IndexPriceData
impl Display for IndexPriceData
Auto Trait Implementations§
impl Freeze for IndexPriceData
impl RefUnwindSafe for IndexPriceData
impl Send for IndexPriceData
impl Sync for IndexPriceData
impl Unpin for IndexPriceData
impl UnwindSafe for IndexPriceData
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