pub struct VolumeByTimeProfileOutput {
pub bins: Vec<f64>,
}Expand description
Volume-by-Time Profile output: the per-bucket mean volume.
bins[i] is the mean volume of all bars whose local time-of-day fell in
bucket i. Empty buckets read 0.0.
Fields§
§bins: Vec<f64>Per-bucket mean volume, earliest bucket first. Length equals buckets.
Trait Implementations§
Source§impl Clone for VolumeByTimeProfileOutput
impl Clone for VolumeByTimeProfileOutput
Source§fn clone(&self) -> VolumeByTimeProfileOutput
fn clone(&self) -> VolumeByTimeProfileOutput
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 VolumeByTimeProfileOutput
impl Debug for VolumeByTimeProfileOutput
Source§impl PartialEq for VolumeByTimeProfileOutput
impl PartialEq for VolumeByTimeProfileOutput
Source§fn eq(&self, other: &VolumeByTimeProfileOutput) -> bool
fn eq(&self, other: &VolumeByTimeProfileOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VolumeByTimeProfileOutput
Auto Trait Implementations§
impl Freeze for VolumeByTimeProfileOutput
impl RefUnwindSafe for VolumeByTimeProfileOutput
impl Send for VolumeByTimeProfileOutput
impl Sync for VolumeByTimeProfileOutput
impl Unpin for VolumeByTimeProfileOutput
impl UnsafeUnpin for VolumeByTimeProfileOutput
impl UnwindSafe for VolumeByTimeProfileOutput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more