pub struct Ligature {
pub included_left_boundary: bool,
pub included_right_boundary: bool,
pub char: char,
pub font: u32,
pub original_chars: Rc<str>,
}
Expand description
A ligature.
Described in TeX.2021.143.
Fields§
§included_left_boundary: bool
§included_right_boundary: bool
§char: char
§font: u32
§original_chars: Rc<str>
The original characters that were replaced by the ligature. This is used if the engine needs to break apart the ligature in order to perform hyphenation.
Trait Implementations§
source§impl From<Ligature> for Horizontal
impl From<Ligature> for Horizontal
impl Eq for Ligature
impl StructuralPartialEq for Ligature
Auto Trait Implementations§
impl Freeze for Ligature
impl RefUnwindSafe for Ligature
impl !Send for Ligature
impl !Sync for Ligature
impl Unpin for Ligature
impl UnwindSafe for Ligature
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