pub enum DiagType {
NonUnit,
Unit,
}Expand description
Specifies whether a triangular matrix has an implicit unit diagonal.
Variants§
NonUnit
The diagonal entries are stored explicitly and used as-is.
Unit
The diagonal is implicitly all ones (unit diagonal).
Trait Implementations§
impl Copy for DiagType
impl Eq for DiagType
impl StructuralPartialEq for DiagType
Auto Trait Implementations§
impl Freeze for DiagType
impl RefUnwindSafe for DiagType
impl Send for DiagType
impl Sync for DiagType
impl Unpin for DiagType
impl UnsafeUnpin for DiagType
impl UnwindSafe for DiagType
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