pub struct BatchedResult {
pub failed_count: usize,
}Expand description
Result of a batched factorization.
Fields§
§failed_count: usizeNumber of matrices that had issues (singular for LU, not SPD for Cholesky).
Trait Implementations§
Source§impl Clone for BatchedResult
impl Clone for BatchedResult
Source§fn clone(&self) -> BatchedResult
fn clone(&self) -> BatchedResult
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 BatchedResult
impl RefUnwindSafe for BatchedResult
impl Send for BatchedResult
impl Sync for BatchedResult
impl Unpin for BatchedResult
impl UnsafeUnpin for BatchedResult
impl UnwindSafe for BatchedResult
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