pub struct AroonBatchOutput {
pub up: Vec<f64>,
pub down: Vec<f64>,
pub combos: Vec<AroonParams>,
pub rows: usize,
pub cols: usize,
}Fields§
§up: Vec<f64>§down: Vec<f64>§combos: Vec<AroonParams>§rows: usize§cols: usizeImplementations§
Source§impl AroonBatchOutput
impl AroonBatchOutput
pub fn row_for_params(&self, p: &AroonParams) -> Option<usize>
pub fn up_for(&self, p: &AroonParams) -> Option<&[f64]>
pub fn down_for(&self, p: &AroonParams) -> Option<&[f64]>
Auto Trait Implementations§
impl Freeze for AroonBatchOutput
impl RefUnwindSafe for AroonBatchOutput
impl Send for AroonBatchOutput
impl Sync for AroonBatchOutput
impl Unpin for AroonBatchOutput
impl UnwindSafe for AroonBatchOutput
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> 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