pub enum ColumnLayout {
Column,
Row,
Plain,
}Expand description
Layout mode (lower 4 bits of ColOpts).
Variants§
Column
Fill columns before rows (COL_COLUMN).
Row
Fill rows before columns (COL_ROW).
Plain
One path per line (COL_PLAIN).
Trait Implementations§
Source§impl Clone for ColumnLayout
impl Clone for ColumnLayout
Source§fn clone(&self) -> ColumnLayout
fn clone(&self) -> ColumnLayout
Returns a duplicate 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 moreSource§impl Debug for ColumnLayout
impl Debug for ColumnLayout
Source§impl PartialEq for ColumnLayout
impl PartialEq for ColumnLayout
impl Copy for ColumnLayout
impl Eq for ColumnLayout
impl StructuralPartialEq for ColumnLayout
Auto Trait Implementations§
impl Freeze for ColumnLayout
impl RefUnwindSafe for ColumnLayout
impl Send for ColumnLayout
impl Sync for ColumnLayout
impl Unpin for ColumnLayout
impl UnsafeUnpin for ColumnLayout
impl UnwindSafe for ColumnLayout
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