Enum ndarray_linalg::krylov::AppendResult
source · pub enum AppendResult<A> {
Added(Coefficients<A>),
Dependent(Coefficients<A>),
}
Variants§
Added(Coefficients<A>)
Dependent(Coefficients<A>)
Implementations§
source§impl<A: Scalar> AppendResult<A>
impl<A: Scalar> AppendResult<A>
pub fn into_coeff(self) -> Coefficients<A>
pub fn is_dependent(&self) -> bool
pub fn coeff(&self) -> &Coefficients<A>
pub fn residual_norm(&self) -> A::Real
Auto Trait Implementations§
impl<A> Freeze for AppendResult<A>
impl<A> RefUnwindSafe for AppendResult<A>where
A: RefUnwindSafe,
impl<A> Send for AppendResult<A>where
A: Send,
impl<A> Sync for AppendResult<A>where
A: Sync,
impl<A> Unpin for AppendResult<A>
impl<A> UnwindSafe for AppendResult<A>where
A: RefUnwindSafe,
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