pub struct RowMatrixEdgeLabels { /* private fields */ }Expand description
Labels printed on the four edges of a row matrix.
Left-to-right rows are P forms and right-to-left rows are R forms. Top-to- bottom columns are I forms and bottom-to-top columns are RI forms.
Implementations§
Source§impl RowMatrixEdgeLabels
impl RowMatrixEdgeLabels
Sourcepub const fn top(&self) -> &[RowLabel; 12]
pub const fn top(&self) -> &[RowLabel; 12]
Returns the I labels above the columns, ordered left to right.
Sourcepub const fn right(&self) -> &[RowLabel; 12]
pub const fn right(&self) -> &[RowLabel; 12]
Returns the R labels beside the rows, ordered top to bottom.
Trait Implementations§
Source§impl Clone for RowMatrixEdgeLabels
impl Clone for RowMatrixEdgeLabels
Source§fn clone(&self) -> RowMatrixEdgeLabels
fn clone(&self) -> RowMatrixEdgeLabels
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 moreimpl Copy for RowMatrixEdgeLabels
Source§impl Debug for RowMatrixEdgeLabels
impl Debug for RowMatrixEdgeLabels
impl Eq for RowMatrixEdgeLabels
Source§impl PartialEq for RowMatrixEdgeLabels
impl PartialEq for RowMatrixEdgeLabels
impl StructuralPartialEq for RowMatrixEdgeLabels
Auto Trait Implementations§
impl Freeze for RowMatrixEdgeLabels
impl RefUnwindSafe for RowMatrixEdgeLabels
impl Send for RowMatrixEdgeLabels
impl Sync for RowMatrixEdgeLabels
impl Unpin for RowMatrixEdgeLabels
impl UnsafeUnpin for RowMatrixEdgeLabels
impl UnwindSafe for RowMatrixEdgeLabels
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