pub enum DetailedLayoutInfo {
Grid(Box<DetailedGridInfo>),
None,
}Available on crate feature
detailed_layout_info only.Expand description
The additional information from layout algorithm
Variants§
Grid(Box<DetailedGridInfo>)
Available on crate feature
grid only.Enum variant for DetailedGridInfo
None
For node that hasn’t had any detailed information yet
Trait Implementations§
Source§impl Clone for DetailedLayoutInfo
impl Clone for DetailedLayoutInfo
Source§fn clone(&self) -> DetailedLayoutInfo
fn clone(&self) -> DetailedLayoutInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DetailedLayoutInfo
impl Debug for DetailedLayoutInfo
Source§impl PartialEq for DetailedLayoutInfo
impl PartialEq for DetailedLayoutInfo
Source§fn eq(&self, other: &DetailedLayoutInfo) -> bool
fn eq(&self, other: &DetailedLayoutInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DetailedLayoutInfo
Auto Trait Implementations§
impl Freeze for DetailedLayoutInfo
impl RefUnwindSafe for DetailedLayoutInfo
impl Send for DetailedLayoutInfo
impl Sync for DetailedLayoutInfo
impl Unpin for DetailedLayoutInfo
impl UnsafeUnpin for DetailedLayoutInfo
impl UnwindSafe for DetailedLayoutInfo
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