Struct boxworks::ds::Discretionary
source · pub struct Discretionary {
pub pre_break: Vec<Horizontal>,
pub post_break: Vec<Horizontal>,
pub replace_count: u32,
}
Expand description
A discretionary break.
The pre-break and post-break lists must only contain nodes of type char, kern, box, rule or ligature. We could have a specific node type for this, but for the moment we just piggy back on the hlist type.
Described in TeX.2021.145.
Fields§
§pre_break: Vec<Horizontal>
Material to insert before this node, if the break occurs here.
post_break: Vec<Horizontal>
Material to insert after this node, if the break occurs here.
replace_count: u32
Number of subsequent nodes to skip if the break occurs here.
Implementations§
source§impl Discretionary
impl Discretionary
Trait Implementations§
source§impl Debug for Discretionary
impl Debug for Discretionary
source§impl Default for Discretionary
impl Default for Discretionary
source§impl From<Discretionary> for Horizontal
impl From<Discretionary> for Horizontal
source§fn from(value: Discretionary) -> Self
fn from(value: Discretionary) -> Self
Converts to this type from the input type.
source§impl PartialEq for Discretionary
impl PartialEq for Discretionary
impl Eq for Discretionary
impl StructuralPartialEq for Discretionary
Auto Trait Implementations§
impl Freeze for Discretionary
impl !RefUnwindSafe for Discretionary
impl !Send for Discretionary
impl !Sync for Discretionary
impl Unpin for Discretionary
impl !UnwindSafe for Discretionary
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