pub struct AdjustableMaAlternatingExtremitiesStreamOutput {
pub ma: f64,
pub upper: f64,
pub lower: f64,
pub extremity: f64,
pub state: f64,
pub changed: f64,
pub smoothed_open: f64,
pub smoothed_high: f64,
pub smoothed_low: f64,
pub smoothed_close: f64,
}Fields§
§ma: f64§upper: f64§lower: f64§extremity: f64§state: f64§changed: f64§smoothed_open: f64§smoothed_high: f64§smoothed_low: f64§smoothed_close: f64Trait Implementations§
Source§impl Clone for AdjustableMaAlternatingExtremitiesStreamOutput
impl Clone for AdjustableMaAlternatingExtremitiesStreamOutput
Source§fn clone(&self) -> AdjustableMaAlternatingExtremitiesStreamOutput
fn clone(&self) -> AdjustableMaAlternatingExtremitiesStreamOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for AdjustableMaAlternatingExtremitiesStreamOutput
impl PartialEq for AdjustableMaAlternatingExtremitiesStreamOutput
Source§fn eq(&self, other: &AdjustableMaAlternatingExtremitiesStreamOutput) -> bool
fn eq(&self, other: &AdjustableMaAlternatingExtremitiesStreamOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AdjustableMaAlternatingExtremitiesStreamOutput
impl StructuralPartialEq for AdjustableMaAlternatingExtremitiesStreamOutput
Auto Trait Implementations§
impl Freeze for AdjustableMaAlternatingExtremitiesStreamOutput
impl RefUnwindSafe for AdjustableMaAlternatingExtremitiesStreamOutput
impl Send for AdjustableMaAlternatingExtremitiesStreamOutput
impl Sync for AdjustableMaAlternatingExtremitiesStreamOutput
impl Unpin for AdjustableMaAlternatingExtremitiesStreamOutput
impl UnsafeUnpin for AdjustableMaAlternatingExtremitiesStreamOutput
impl UnwindSafe for AdjustableMaAlternatingExtremitiesStreamOutput
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