pub enum TriangularSide {
Lower,
Upper,
}Expand description
Whether the triangular matrix is lower or upper.
Variants§
Trait Implementations§
Source§impl Clone for TriangularSide
impl Clone for TriangularSide
Source§fn clone(&self) -> TriangularSide
fn clone(&self) -> TriangularSide
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 TriangularSide
impl Debug for TriangularSide
Source§impl PartialEq for TriangularSide
impl PartialEq for TriangularSide
Source§fn eq(&self, other: &TriangularSide) -> bool
fn eq(&self, other: &TriangularSide) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TriangularSide
impl Eq for TriangularSide
impl StructuralPartialEq for TriangularSide
Auto Trait Implementations§
impl Freeze for TriangularSide
impl RefUnwindSafe for TriangularSide
impl Send for TriangularSide
impl Sync for TriangularSide
impl Unpin for TriangularSide
impl UnsafeUnpin for TriangularSide
impl UnwindSafe for TriangularSide
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