pub struct Glue {
pub width: Scaled,
pub stretch: Scaled,
pub stretch_order: GlueOrder,
pub shrink: Scaled,
pub shrink_order: GlueOrder,
}
Expand description
Glue.
In Knuth’s TeX this struct is not passed around directly; instead
Knuth essentially uses std::rc::Rc<Glue>
.
This optimization is based on the fact that very few distinct glue
values appear in a document, and that the pointer takes up less
space than the struct.
We might consider performing such an optimization.
Described in TeX.2021.150.
Fields§
§width: Scaled
§stretch: Scaled
§stretch_order: GlueOrder
§shrink: Scaled
§shrink_order: GlueOrder
Implementations§
source§impl Glue
impl Glue
sourcepub fn wrapping_add(self, rhs: Glue) -> Self
pub fn wrapping_add(self, rhs: Glue) -> Self
TeX.2021.1239
pub fn checked_add(self, rhs: Glue) -> Option<Self>
pub fn checked_mul(self, rhs: i32) -> Option<Self>
pub fn wrapping_mul(self, rhs: i32) -> Self
pub fn checked_div(self, rhs: i32) -> Option<Self>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Glue
impl<'de> Deserialize<'de> for Glue
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for Glue
impl Eq for Glue
impl StructuralPartialEq for Glue
Auto Trait Implementations§
impl Freeze for Glue
impl RefUnwindSafe for Glue
impl Send for Glue
impl Sync for Glue
impl Unpin for Glue
impl UnwindSafe for Glue
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)