pub enum KernKind {
Normal,
Explicit,
Accent,
Math,
}
Expand description
The kind of a kern node.
Described in TeX.2021.155.
Variants§
Normal
Inserted from font information or math mode calculations.
Explicit
Inserted using e.g. TeX’s \kern
primitive.
Accent
Inserted from non-math accents.
Math
Inserted from e.g. \mkern
specifications in math formulas.
Trait Implementations§
impl Eq for KernKind
impl StructuralPartialEq for KernKind
Auto Trait Implementations§
impl Freeze for KernKind
impl RefUnwindSafe for KernKind
impl Send for KernKind
impl Sync for KernKind
impl Unpin for KernKind
impl UnwindSafe for KernKind
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