pub struct HistogramEntry {
pub price: f64,
pub size: Decimal,
}Expand description
A price/size bucket returned by reqHistogramData.
Fields§
§price: f64§size: DecimalTrait Implementations§
Source§impl Clone for HistogramEntry
impl Clone for HistogramEntry
Source§fn clone(&self) -> HistogramEntry
fn clone(&self) -> HistogramEntry
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 HistogramEntry
impl Debug for HistogramEntry
Source§impl Default for HistogramEntry
impl Default for HistogramEntry
Source§fn default() -> HistogramEntry
fn default() -> HistogramEntry
Returns the “default value” for a type. Read more
Source§impl PartialEq for HistogramEntry
impl PartialEq for HistogramEntry
impl StructuralPartialEq for HistogramEntry
Auto Trait Implementations§
impl Freeze for HistogramEntry
impl RefUnwindSafe for HistogramEntry
impl Send for HistogramEntry
impl Sync for HistogramEntry
impl Unpin for HistogramEntry
impl UnsafeUnpin for HistogramEntry
impl UnwindSafe for HistogramEntry
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