pub struct Leaders<ET: EngineTypes> {
pub tp: LeaderType,
pub body: LeaderBody<ET>,
pub skip: LeaderSkip<ET>,
}
Expand description
A \leaders
node, as produced by \leaders
, \cleaders
or \xleaders
.
Fields§
§tp: LeaderType
\leaders
, \cleaders
or \xleaders
.
body: LeaderBody<ET>
The node to be repeated for the given skip length; a box or a rule.
skip: LeaderSkip<ET>
The skip length along which the body should be repeated.
Trait Implementations§
Source§impl<ET: EngineTypes> NodeTrait<ET> for Leaders<ET>
impl<ET: EngineTypes> NodeTrait<ET> for Leaders<ET>
Source§fn display_fmt(&self, indent: usize, f: &mut Formatter<'_>) -> Result
fn display_fmt(&self, indent: usize, f: &mut Formatter<'_>) -> Result
Produces a human-readable string; since nodes are deeply nested, takes an
additional
indent
value to indent the stringSource§fn display(&self) -> DisplayNode<'_, ET, Self>
fn display(&self) -> DisplayNode<'_, ET, Self>
Returns a helper struct that implements
Display
and uses Self::display_fmt
to yield a human-readable string.Source§fn opaque(&self) -> bool
fn opaque(&self) -> bool
Whether this node is “opaque”; meaning: When considering a list of nodes (e.g. in
\unskip
or \lastbox
, this node should not be considered. Useful for annotation/marker nodes
some engine wants to insert, without impacting algorithms that inspect e.g. the last node
of the current list.fn sourceref(&self) -> Option<(&SourceRef<ET>, &SourceRef<ET>)>
Auto Trait Implementations§
impl<ET> !Freeze for Leaders<ET>
impl<ET> !RefUnwindSafe for Leaders<ET>
impl<ET> !Send for Leaders<ET>
impl<ET> !Sync for Leaders<ET>
impl<ET> Unpin for Leaders<ET>
impl<ET> !UnwindSafe for Leaders<ET>
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more