pub struct VList {
pub height: Scaled,
pub width: Scaled,
pub depth: Scaled,
pub shift_amount: Scaled,
pub list: Vec<Vertical>,
pub glue_ratio: GlueRatio,
pub glue_sign: GlueSign,
pub glue_order: GlueOrder,
}
Expand description
A box made from a vertical list.
This is the same as HList, except the list inside holds Vertical nodes instead of Horizontal nodes.
Described in TeX.2021.137.
Fields§
§height: Scaled
§width: Scaled
§depth: Scaled
§shift_amount: Scaled
§list: Vec<Vertical>
§glue_ratio: GlueRatio
§glue_sign: GlueSign
§glue_order: GlueOrder
Trait Implementations§
source§impl From<VList> for Horizontal
impl From<VList> for Horizontal
impl Eq for VList
impl StructuralPartialEq for VList
Auto Trait Implementations§
impl Freeze for VList
impl !RefUnwindSafe for VList
impl !Send for VList
impl !Sync for VList
impl Unpin for VList
impl !UnwindSafe for VList
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