pub enum LeastSquaresResult {
Solved(Vec<f64>),
Singular,
}Expand description
Result of a small dense linear solve.
Variants§
Trait Implementations§
Source§impl Clone for LeastSquaresResult
impl Clone for LeastSquaresResult
Source§fn clone(&self) -> LeastSquaresResult
fn clone(&self) -> LeastSquaresResult
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 moreSource§impl Debug for LeastSquaresResult
impl Debug for LeastSquaresResult
Source§impl PartialEq for LeastSquaresResult
impl PartialEq for LeastSquaresResult
impl StructuralPartialEq for LeastSquaresResult
Auto Trait Implementations§
impl Freeze for LeastSquaresResult
impl RefUnwindSafe for LeastSquaresResult
impl Send for LeastSquaresResult
impl Sync for LeastSquaresResult
impl Unpin for LeastSquaresResult
impl UnsafeUnpin for LeastSquaresResult
impl UnwindSafe for LeastSquaresResult
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