pub struct Rule {
pub height: Scaled,
pub width: Scaled,
pub depth: Scaled,
}
Expand description
A rule stands for a solid black rectangle.
It has width, depth and height fields. However if any of these dimensions is -2^30, the actual value will be determined by running rule up to the boundary of the innermost, enclosing box. This is called a “running dimension”. The width is never running in an hlist; the height and depth are never running in a vlist.
Described in TeX.2021.138.
Fields§
§height: Scaled
§width: Scaled
§depth: Scaled
Implementations§
Trait Implementations§
source§impl From<Rule> for Horizontal
impl From<Rule> for Horizontal
impl Eq for Rule
impl StructuralPartialEq for Rule
Auto Trait Implementations§
impl Freeze for Rule
impl RefUnwindSafe for Rule
impl Send for Rule
impl Sync for Rule
impl Unpin for Rule
impl UnwindSafe for Rule
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