pub struct CurrentAveragePrice {
pub mins: u64,
pub price: Decimal,
pub close_time: Timestamp,
}Fields§
§mins: u64Average price interval (in minutes)
price: DecimalAverage price
close_time: TimestampLast trade time
Trait Implementations§
Source§impl Debug for CurrentAveragePrice
impl Debug for CurrentAveragePrice
Source§impl<'de> Deserialize<'de> for CurrentAveragePrice
impl<'de> Deserialize<'de> for CurrentAveragePrice
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 PartialEq for CurrentAveragePrice
impl PartialEq for CurrentAveragePrice
impl StructuralPartialEq for CurrentAveragePrice
Auto Trait Implementations§
impl Freeze for CurrentAveragePrice
impl RefUnwindSafe for CurrentAveragePrice
impl Send for CurrentAveragePrice
impl Sync for CurrentAveragePrice
impl Unpin for CurrentAveragePrice
impl UnwindSafe for CurrentAveragePrice
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