Enum boxworks::ds::Horizontal

source ·
pub enum Horizontal {
Show 14 variants Char(Char), HList(HList), VList(VList), Rule(Rule), Mark(Mark), Insertion(Insertion), Adjust(Adjust), Ligature(Ligature), Discretionary(Discretionary), Whatsit(Box<dyn Whatsit>), Math(Math), Glue(Glue), Kern(Kern), Penalty(Penalty),
}
Expand description

Element of a horizontal list.

Variants§

§

Char(Char)

§

HList(HList)

§

VList(VList)

§

Rule(Rule)

§

Mark(Mark)

§

Insertion(Insertion)

§

Adjust(Adjust)

§

Ligature(Ligature)

§

Discretionary(Discretionary)

§

Whatsit(Box<dyn Whatsit>)

§

Math(Math)

§

Glue(Glue)

§

Kern(Kern)

§

Penalty(Penalty)

Implementations§

source§

impl Horizontal

source

pub fn precedes_break(&self) -> bool

Whether a glue node that comes after this node may be broken.

For char nodes, this function is essentially undefined in Knuth’s TeX. More specifically, the value depends on the exact character code. In TeX this function is never called for char nodes which is why this is not a problem. Here, we return true for char nodes based on my analysis of all places in Knuth’s TeX where it is invoked:

  • TeX.2021.868: precedes_break is called on variable cur_p which is a pointer to a horizontal list. Before this call, the calling code first checks if the node is a character and if so follows the same code path. Thus returning true here is the right thing to do.

  • TeX.2021.973: the function is called on a variable prev_p which is a pointer to a vertical list and so the char case never arises.

  • TeX.2021.1000: same as the last case.

This function is defined in TeX.2021.148.

source

pub fn non_discardable(&self) -> bool

Whether this node is discarded after a break.

As with Self::precedes_break, this function is essentially undefined for char nodes in Knuth’s TeX. However there is only one call site (TeX.2021.879) and in that call site char nodes behave as if this function returns true.

This function is defined in TeX.2021.148.

Trait Implementations§

source§

impl Debug for Horizontal

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Adjust> for Horizontal

source§

fn from(value: Adjust) -> Self

Converts to this type from the input type.
source§

impl From<Char> for Horizontal

source§

fn from(value: Char) -> Self

Converts to this type from the input type.
source§

impl From<Discretionary> for Horizontal

source§

fn from(value: Discretionary) -> Self

Converts to this type from the input type.
source§

impl From<Glue> for Horizontal

source§

fn from(value: Glue) -> Self

Converts to this type from the input type.
source§

impl From<HList> for Horizontal

source§

fn from(value: HList) -> Self

Converts to this type from the input type.
source§

impl From<Insertion> for Horizontal

source§

fn from(value: Insertion) -> Self

Converts to this type from the input type.
source§

impl From<Kern> for Horizontal

source§

fn from(value: Kern) -> Self

Converts to this type from the input type.
source§

impl From<Ligature> for Horizontal

source§

fn from(value: Ligature) -> Self

Converts to this type from the input type.
source§

impl From<Mark> for Horizontal

source§

fn from(value: Mark) -> Self

Converts to this type from the input type.
source§

impl From<Math> for Horizontal

source§

fn from(value: Math) -> Self

Converts to this type from the input type.
source§

impl From<Penalty> for Horizontal

source§

fn from(value: Penalty) -> Self

Converts to this type from the input type.
source§

impl From<Rule> for Horizontal

source§

fn from(value: Rule) -> Self

Converts to this type from the input type.
source§

impl From<VList> for Horizontal

source§

fn from(value: VList) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Horizontal

source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Horizontal

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.