pub struct MathRegion {
pub range: Range<usize>,
/* private fields */
}Expand description
One recognised math region in source order.
range covers both delimiters and everything between them. The
span tag carries the typed classification plus the body byte
range resolved against source.
Fields§
§range: Range<usize>Implementations§
Trait Implementations§
Source§impl Clone for MathRegion
impl Clone for MathRegion
Source§fn clone(&self) -> MathRegion
fn clone(&self) -> MathRegion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MathRegion
impl RefUnwindSafe for MathRegion
impl Send for MathRegion
impl Sync for MathRegion
impl Unpin for MathRegion
impl UnsafeUnpin for MathRegion
impl UnwindSafe for MathRegion
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