pub enum Uplo {
Upper,
Lower,
}Expand description
Triangular fill mode for a matrix.
Variants§
Upper
Upper triangle is referenced; lower is implied.
Lower
Lower triangle is referenced; upper is implied.
Trait Implementations§
impl Copy for Uplo
impl Eq for Uplo
impl StructuralPartialEq for Uplo
Auto Trait Implementations§
impl Freeze for Uplo
impl RefUnwindSafe for Uplo
impl Send for Uplo
impl Sync for Uplo
impl Unpin for Uplo
impl UnsafeUnpin for Uplo
impl UnwindSafe for Uplo
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