pub enum SorType {
Forward,
Backward,
Symmetric,
}Expand description
Sweep direction for sorv.
Variants§
Forward
Forward Gauss-Seidel sweep.
Backward
Backward Gauss-Seidel sweep.
Symmetric
Symmetric (forward + backward) sweep.
Trait Implementations§
impl Copy for SorType
impl Eq for SorType
impl StructuralPartialEq for SorType
Auto Trait Implementations§
impl Freeze for SorType
impl RefUnwindSafe for SorType
impl Send for SorType
impl Sync for SorType
impl Unpin for SorType
impl UnsafeUnpin for SorType
impl UnwindSafe for SorType
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