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 (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 ColumnLayout
Source§impl Debug for ColumnLayout
impl Debug for ColumnLayout
impl Eq for ColumnLayout
Source§impl PartialEq for ColumnLayout
impl PartialEq for ColumnLayout
Source§fn eq(&self, other: &ColumnLayout) -> bool
fn eq(&self, other: &ColumnLayout) -> bool
Tests for
self and other values to be equal, and is used by ==.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