pub enum ListItemIndent {
One,
Tab,
Mixed,
}Expand description
List item indentation style.
Variants§
One
Bullet + 1 space (default).
Tab
Round up to 4 columns.
Mixed
One for tight lists, tab for spread.
Trait Implementations§
Source§impl Clone for ListItemIndent
impl Clone for ListItemIndent
Source§fn clone(&self) -> ListItemIndent
fn clone(&self) -> ListItemIndent
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 ListItemIndent
impl Debug for ListItemIndent
Source§impl Default for ListItemIndent
impl Default for ListItemIndent
Source§fn default() -> ListItemIndent
fn default() -> ListItemIndent
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListItemIndent
impl PartialEq for ListItemIndent
impl Copy for ListItemIndent
impl Eq for ListItemIndent
impl StructuralPartialEq for ListItemIndent
Auto Trait Implementations§
impl Freeze for ListItemIndent
impl RefUnwindSafe for ListItemIndent
impl Send for ListItemIndent
impl Sync for ListItemIndent
impl Unpin for ListItemIndent
impl UnsafeUnpin for ListItemIndent
impl UnwindSafe for ListItemIndent
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