pub struct FootprintOutput {
pub levels: Vec<FootprintLevel>,
}Expand description
The full footprint of a bar: one FootprintLevel per touched price
bucket, sorted ascending by price.
Fields§
§levels: Vec<FootprintLevel>Touched price buckets, lowest price first.
Trait Implementations§
Source§impl Clone for FootprintOutput
impl Clone for FootprintOutput
Source§fn clone(&self) -> FootprintOutput
fn clone(&self) -> FootprintOutput
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 FootprintOutput
impl Debug for FootprintOutput
Source§impl Default for FootprintOutput
impl Default for FootprintOutput
Source§fn default() -> FootprintOutput
fn default() -> FootprintOutput
Returns the “default value” for a type. Read more
Source§impl PartialEq for FootprintOutput
impl PartialEq for FootprintOutput
Source§fn eq(&self, other: &FootprintOutput) -> bool
fn eq(&self, other: &FootprintOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FootprintOutput
Auto Trait Implementations§
impl Freeze for FootprintOutput
impl RefUnwindSafe for FootprintOutput
impl Send for FootprintOutput
impl Sync for FootprintOutput
impl Unpin for FootprintOutput
impl UnsafeUnpin for FootprintOutput
impl UnwindSafe for FootprintOutput
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