pub struct PivotOutput {
pub r4: Vec<f64>,
pub r3: Vec<f64>,
pub r2: Vec<f64>,
pub r1: Vec<f64>,
pub pp: Vec<f64>,
pub s1: Vec<f64>,
pub s2: Vec<f64>,
pub s3: Vec<f64>,
pub s4: Vec<f64>,
}Fields§
§r4: Vec<f64>§r3: Vec<f64>§r2: Vec<f64>§r1: Vec<f64>§pp: Vec<f64>§s1: Vec<f64>§s2: Vec<f64>§s3: Vec<f64>§s4: Vec<f64>Trait Implementations§
Source§impl Clone for PivotOutput
impl Clone for PivotOutput
Source§fn clone(&self) -> PivotOutput
fn clone(&self) -> PivotOutput
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 moreAuto Trait Implementations§
impl Freeze for PivotOutput
impl RefUnwindSafe for PivotOutput
impl Send for PivotOutput
impl Sync for PivotOutput
impl Unpin for PivotOutput
impl UnwindSafe for PivotOutput
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