pub enum EnumDelims {
Period,
Parens,
RParen,
}Expand description
Enumerated list item labels can either end with a period . or a right parenthesis ).
A third option is to enclose them in matching parentheses ( and ).
Variants§
Trait Implementations§
Source§impl Clone for EnumDelims
impl Clone for EnumDelims
Source§fn clone(&self) -> EnumDelims
fn clone(&self) -> EnumDelims
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 EnumDelims
impl Debug for EnumDelims
Source§impl PartialEq for EnumDelims
impl PartialEq for EnumDelims
impl Copy for EnumDelims
impl StructuralPartialEq for EnumDelims
Auto Trait Implementations§
impl Freeze for EnumDelims
impl RefUnwindSafe for EnumDelims
impl Send for EnumDelims
impl Sync for EnumDelims
impl Unpin for EnumDelims
impl UnwindSafe for EnumDelims
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