pub struct PnfColumn {
pub direction: i8,
pub high: f64,
pub low: f64,
}Expand description
One completed Point-and-Figure column.
Fields§
§direction: i8+1 for a rising (X) column, -1 for a falling (O) column.
high: f64Upper box edge of the column.
low: f64Lower box edge of the column.
Trait Implementations§
impl Copy for PnfColumn
impl StructuralPartialEq for PnfColumn
Auto Trait Implementations§
impl Freeze for PnfColumn
impl RefUnwindSafe for PnfColumn
impl Send for PnfColumn
impl Sync for PnfColumn
impl Unpin for PnfColumn
impl UnsafeUnpin for PnfColumn
impl UnwindSafe for PnfColumn
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