pub struct MathBlock<'a> {
pub display: bool,
pub content: CowStr<'a>,
pub span: Span,
}Expand description
Mathematical equation block (LaTeX).
Fields§
§display: boolWhether this is display math (vs inline).
content: CowStr<'a>LaTeX content.
span: SpanSource span.
Trait Implementations§
impl<'a> StructuralPartialEq for MathBlock<'a>
Auto Trait Implementations§
impl<'a> Freeze for MathBlock<'a>
impl<'a> RefUnwindSafe for MathBlock<'a>
impl<'a> Send for MathBlock<'a>
impl<'a> Sync for MathBlock<'a>
impl<'a> Unpin for MathBlock<'a>
impl<'a> UnwindSafe for MathBlock<'a>
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