Enum rulinalg::matrix::DiagOffset
[−]
[src]
pub enum DiagOffset {
Main,
Above(usize),
Below(usize),
}Diagonal offset (used by Diagonal iterator).
Variants
MainThe main diagonal of the matrix.
Above(usize)An offset above the main diagonal.
Below(usize)An offset below the main diagonal.
Trait Implementations
impl Debug for DiagOffset[src]
impl PartialEq for DiagOffset[src]
fn eq(&self, __arg_0: &DiagOffset) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &DiagOffset) -> bool
This method tests for !=.