pub struct SessionHighLowOutput {
pub high: f64,
pub low: f64,
}Expand description
Session High/Low output: the high and low established so far in the current session.
Fields§
§high: f64Highest high seen since the current session opened.
low: f64Lowest low seen since the current session opened.
Trait Implementations§
Source§impl Clone for SessionHighLowOutput
impl Clone for SessionHighLowOutput
Source§fn clone(&self) -> SessionHighLowOutput
fn clone(&self) -> SessionHighLowOutput
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 moreimpl Copy for SessionHighLowOutput
Source§impl Debug for SessionHighLowOutput
impl Debug for SessionHighLowOutput
Source§impl PartialEq for SessionHighLowOutput
impl PartialEq for SessionHighLowOutput
Source§fn eq(&self, other: &SessionHighLowOutput) -> bool
fn eq(&self, other: &SessionHighLowOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SessionHighLowOutput
Auto Trait Implementations§
impl Freeze for SessionHighLowOutput
impl RefUnwindSafe for SessionHighLowOutput
impl Send for SessionHighLowOutput
impl Sync for SessionHighLowOutput
impl Unpin for SessionHighLowOutput
impl UnsafeUnpin for SessionHighLowOutput
impl UnwindSafe for SessionHighLowOutput
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