pub enum MatrixKind {
Plain,
Paren,
Bracket,
VBar,
DoubleVBar,
Brace,
}Expand description
The delimiter style for a EqNode::Matrix node.
Variants§
Plain
\begin{matrix} — no delimiters.
Paren
\begin{pmatrix} — parentheses ( ).
Bracket
\begin{bmatrix} — square brackets [ ].
VBar
\begin{vmatrix} — single vertical bars | |.
DoubleVBar
\begin{Vmatrix} — double vertical bars ‖ ‖.
Brace
\begin{Bmatrix} — curly braces { }.
Trait Implementations§
Source§impl Clone for MatrixKind
impl Clone for MatrixKind
Source§fn clone(&self) -> MatrixKind
fn clone(&self) -> MatrixKind
Returns a duplicate of the value. Read more
1.0.0 · 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 MatrixKind
impl Debug for MatrixKind
impl Copy for MatrixKind
Auto Trait Implementations§
impl Freeze for MatrixKind
impl RefUnwindSafe for MatrixKind
impl Send for MatrixKind
impl Sync for MatrixKind
impl Unpin for MatrixKind
impl UnsafeUnpin for MatrixKind
impl UnwindSafe for MatrixKind
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