pub struct FibProjectionOutput {
pub level_618: f64,
pub level_1000: f64,
pub level_1618: f64,
pub level_2618: f64,
}Expand description
Fibonacci Projection levels (the C→D target zone of a measured move).
Fields§
§level_618: f6461.8% projection of the A→B leg from C.
level_1000: f64100% projection — the AB=CD measured move.
level_1618: f64161.8% projection.
level_2618: f64261.8% projection.
Trait Implementations§
Source§impl Clone for FibProjectionOutput
impl Clone for FibProjectionOutput
Source§fn clone(&self) -> FibProjectionOutput
fn clone(&self) -> FibProjectionOutput
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 FibProjectionOutput
Source§impl Debug for FibProjectionOutput
impl Debug for FibProjectionOutput
Source§impl PartialEq for FibProjectionOutput
impl PartialEq for FibProjectionOutput
Source§fn eq(&self, other: &FibProjectionOutput) -> bool
fn eq(&self, other: &FibProjectionOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FibProjectionOutput
Auto Trait Implementations§
impl Freeze for FibProjectionOutput
impl RefUnwindSafe for FibProjectionOutput
impl Send for FibProjectionOutput
impl Sync for FibProjectionOutput
impl Unpin for FibProjectionOutput
impl UnsafeUnpin for FibProjectionOutput
impl UnwindSafe for FibProjectionOutput
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