pub struct TeXElement {
pub span: Span,
pub is_block: bool,
pub value: String,
}Expand description
TeX 수식 $ … $ 또는 $$ … $$
Fields§
§span: Span§is_block: bool§value: StringTrait Implementations§
Source§impl Clone for TeXElement
impl Clone for TeXElement
Source§fn clone(&self) -> TeXElement
fn clone(&self) -> TeXElement
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 TeXElement
impl Debug for TeXElement
Auto Trait Implementations§
impl Freeze for TeXElement
impl RefUnwindSafe for TeXElement
impl Send for TeXElement
impl Sync for TeXElement
impl Unpin for TeXElement
impl UnwindSafe for TeXElement
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