pub enum MatrixTriangle {
Lower,
Upper,
}Expand description
Matrix triangle selector for decomposed matrices.
Variants§
Trait Implementations§
Source§impl Clone for MatrixTriangle
impl Clone for MatrixTriangle
Source§fn clone(&self) -> MatrixTriangle
fn clone(&self) -> MatrixTriangle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MatrixTriangle
impl Debug for MatrixTriangle
Source§impl PartialEq for MatrixTriangle
impl PartialEq for MatrixTriangle
Source§fn eq(&self, other: &MatrixTriangle) -> bool
fn eq(&self, other: &MatrixTriangle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MatrixTriangle
impl Eq for MatrixTriangle
impl StructuralPartialEq for MatrixTriangle
Auto Trait Implementations§
impl Freeze for MatrixTriangle
impl RefUnwindSafe for MatrixTriangle
impl Send for MatrixTriangle
impl Sync for MatrixTriangle
impl Unpin for MatrixTriangle
impl UnsafeUnpin for MatrixTriangle
impl UnwindSafe for MatrixTriangle
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