enum ApproxLayout {
Inline {
worst_width: Columns,
excess_width_from_only_if_block: Columns,
},
BlockOrMixed {
pre_worst_width: Columns,
post_worst_width: Columns,
},
}
Expand description
The approximate shape of a Node
, regarding its 2D placement.
Variants§
Inline
Only occupies part of a line, (at most) worst_width
columns wide.
worst_width
can exceed the inline
field of MaxWidths
, in which
case the choice of inline vs block is instead made by a surrounding node.
Fields
§
excess_width_from_only_if_block: Columns
How much of worst_width
comes from Node::IfBlockLayout
- that is,
worst_width
still includes Node::IfBlockLayout
, so conservative
decisions will still be made, but excess_width_from_only_if_block
can be used to reduce worst_width
when block layout is no longer
a possibility (i.e. by the enclosing Node::InlineOrIndentedBlock
).
BlockOrMixed
Needs to occupy multiple lines, but may also have the equivalent of
an Inline
before (pre_
) and after (post_
) the multi-line block.
Implementations§
source§impl ApproxLayout
impl ApproxLayout
Trait Implementations§
source§impl Clone for ApproxLayout
impl Clone for ApproxLayout
source§fn clone(&self) -> ApproxLayout
fn clone(&self) -> ApproxLayout
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for ApproxLayout
Auto Trait Implementations§
impl Freeze for ApproxLayout
impl RefUnwindSafe for ApproxLayout
impl Send for ApproxLayout
impl Sync for ApproxLayout
impl Unpin for ApproxLayout
impl UnwindSafe for ApproxLayout
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
)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