pub enum EnvRow {
Cells {
cells: Vec<MathNode>,
number: EqNumber,
labels: Vec<String>,
},
Hline,
Intertext(Box<MathNode>),
}Expand description
One row of a matrix / alignment environment.
Variants§
Implementations§
Trait Implementations§
impl Eq for EnvRow
impl StructuralPartialEq for EnvRow
Auto Trait Implementations§
impl Freeze for EnvRow
impl RefUnwindSafe for EnvRow
impl Send for EnvRow
impl Sync for EnvRow
impl Unpin for EnvRow
impl UnsafeUnpin for EnvRow
impl UnwindSafe for EnvRow
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