pub struct Insertion {
pub box_number: u8,
pub height: Scaled,
pub split_max_depth: Scaled,
pub split_top_skip: Glue,
pub float_penalty: u32,
pub vlist: Vec<Vertical>,
}
Expand description
Vertical material to be inserted.
This node is related to the TeX primitive \insert
.
Described in TeX.2021.140.
Fields§
§box_number: u8
§height: Scaled
Slightly misnamed: it actually holds the natural height plus depth of the vertical list being inserted.
split_max_depth: Scaled
Used in case this insertion is split.
split_top_skip: Glue
§float_penalty: u32
Penalty to be used if this insertion floats to a subsequent page after a split insertion of the same class.
vlist: Vec<Vertical>
Trait Implementations§
source§impl From<Insertion> for Horizontal
impl From<Insertion> for Horizontal
impl Eq for Insertion
impl StructuralPartialEq for Insertion
Auto Trait Implementations§
impl Freeze for Insertion
impl !RefUnwindSafe for Insertion
impl !Send for Insertion
impl !Sync for Insertion
impl Unpin for Insertion
impl !UnwindSafe for Insertion
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