pub struct FlowColumnConfig {
pub balanced: bool,
pub min_lines: u16,
}Expand description
Configuration for FlowColumn. See FlowRowConfig.
Fields§
§balanced: boolPack lines to balance their lengths (taffy 0.14 FlexWrap::Balance).
min_lines: u16Minimum number of lines. 1 (default) leaves the count to layout.
Trait Implementations§
Source§impl Clone for FlowColumnConfig
impl Clone for FlowColumnConfig
Source§fn clone(&self) -> FlowColumnConfig
fn clone(&self) -> FlowColumnConfig
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 moreimpl Copy for FlowColumnConfig
Source§impl Debug for FlowColumnConfig
impl Debug for FlowColumnConfig
Source§impl Default for FlowColumnConfig
impl Default for FlowColumnConfig
Source§impl PartialEq for FlowColumnConfig
impl PartialEq for FlowColumnConfig
impl StructuralPartialEq for FlowColumnConfig
Auto Trait Implementations§
impl Freeze for FlowColumnConfig
impl RefUnwindSafe for FlowColumnConfig
impl Send for FlowColumnConfig
impl Sync for FlowColumnConfig
impl Unpin for FlowColumnConfig
impl UnsafeUnpin for FlowColumnConfig
impl UnwindSafe for FlowColumnConfig
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