pub struct AutoFibOutput {
pub level_0: f64,
pub level_236: f64,
pub level_382: f64,
pub level_500: f64,
pub level_618: f64,
pub level_786: f64,
pub level_1000: f64,
}Expand description
Auto-Fibonacci retracement levels for the dominant recent swing leg.
Fields§
§level_0: f640.0% — the dominant leg’s end.
level_236: f6423.6% retracement.
level_382: f6438.2% retracement.
level_500: f6450% retracement.
level_618: f6461.8% retracement.
level_786: f6478.6% retracement.
level_1000: f64100% — the dominant leg’s start.
Trait Implementations§
Source§impl Clone for AutoFibOutput
impl Clone for AutoFibOutput
Source§fn clone(&self) -> AutoFibOutput
fn clone(&self) -> AutoFibOutput
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 AutoFibOutput
Source§impl Debug for AutoFibOutput
impl Debug for AutoFibOutput
Source§impl PartialEq for AutoFibOutput
impl PartialEq for AutoFibOutput
Source§fn eq(&self, other: &AutoFibOutput) -> bool
fn eq(&self, other: &AutoFibOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AutoFibOutput
Auto Trait Implementations§
impl Freeze for AutoFibOutput
impl RefUnwindSafe for AutoFibOutput
impl Send for AutoFibOutput
impl Sync for AutoFibOutput
impl Unpin for AutoFibOutput
impl UnsafeUnpin for AutoFibOutput
impl UnwindSafe for AutoFibOutput
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