pub enum Repair {
DroppedSymbol {
latex: String,
},
DroppedTooDeep,
DroppedHostBox {
token: u32,
},
AddedSuperscript,
ReplacedDelimiter {
found: char,
},
PaddedMatrix,
}Expand description
One change Document::repair made.
Variants§
DroppedSymbol
Dropped an atom or big operator whose symbol LaTeX is unsafe.
DroppedTooDeep
Dropped a structure whose slots would nest deeper than MAX_DEPTH.
DroppedHostBox
Dropped a host box whose token is above MAX_HOST_TOKEN.
AddedSuperscript
Gave a script with neither a subscript nor a superscript an empty superscript.
ReplacedDelimiter
Replaced an unsupported delimiter with the invisible ..
PaddedMatrix
Padded ragged matrix rows with empty cells, or gave a matrix without cells one empty cell.
Trait Implementations§
impl Eq for Repair
impl StructuralPartialEq for Repair
Auto Trait Implementations§
impl Freeze for Repair
impl RefUnwindSafe for Repair
impl Send for Repair
impl Sync for Repair
impl Unpin for Repair
impl UnsafeUnpin for Repair
impl UnwindSafe for Repair
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