pub struct HList {
pub height: Scaled,
pub width: Scaled,
pub depth: Scaled,
pub shift_amount: Scaled,
pub list: Vec<Horizontal>,
pub glue_ratio: GlueRatio,
pub glue_sign: GlueSign,
pub glue_order: GlueOrder,
}
Expand description
A box made from a horizontal list.
Described in TeX.2021.135.
Fields§
§height: Scaled
§width: Scaled
§depth: Scaled
§shift_amount: Scaled
How much this box should be lowered (if it appears in a horizontal list), or how much it should be moved to the right (if it appears in a vertical list).
list: Vec<Horizontal>
§glue_ratio: GlueRatio
§glue_sign: GlueSign
§glue_order: GlueOrder
Implementations§
source§impl HList
impl HList
sourcepub fn new_null_box() -> Self
pub fn new_null_box() -> Self
Returns a hlist node corresponding to the TeX snippet \hbox{}
.
Described in TeX.2021.136.
Trait Implementations§
source§impl From<HList> for Horizontal
impl From<HList> for Horizontal
impl Eq for HList
impl StructuralPartialEq for HList
Auto Trait Implementations§
impl Freeze for HList
impl !RefUnwindSafe for HList
impl !Send for HList
impl !Sync for HList
impl Unpin for HList
impl !UnwindSafe for HList
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