pub struct RowLabelInfo<'arena> {
pub tag: Option<NonZeroU16>,
pub link_target: Option<&'arena str>,
}Expand description
Equation-number / label metadata for the last row of a numbered environment.
The last row of align, gather, equation, multline, etc. has no trailing
\\ row separator, so its tag (equation number) and link target (from \label)
can’t ride on a Node::RowSeparator. They’re arena-allocated and threaded
through Node::EquationArray / Node::MultLine instead.
Fields§
§tag: Option<NonZeroU16>§link_target: Option<&'arena str>Trait Implementations§
Auto Trait Implementations§
impl<'arena> Freeze for RowLabelInfo<'arena>
impl<'arena> RefUnwindSafe for RowLabelInfo<'arena>
impl<'arena> Send for RowLabelInfo<'arena>
impl<'arena> Sync for RowLabelInfo<'arena>
impl<'arena> Unpin for RowLabelInfo<'arena>
impl<'arena> UnsafeUnpin for RowLabelInfo<'arena>
impl<'arena> UnwindSafe for RowLabelInfo<'arena>
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