pub enum ListDelimiter {
Dash,
Asterisk,
Plus,
Period,
Paren,
}Expand description
The marker character that delimits a list’s items.
Variants§
Trait Implementations§
Source§impl Clone for ListDelimiter
impl Clone for ListDelimiter
Source§fn clone(&self) -> ListDelimiter
fn clone(&self) -> ListDelimiter
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 ListDelimiter
Source§impl Debug for ListDelimiter
impl Debug for ListDelimiter
impl Eq for ListDelimiter
Source§impl PartialEq for ListDelimiter
impl PartialEq for ListDelimiter
Source§fn eq(&self, other: &ListDelimiter) -> bool
fn eq(&self, other: &ListDelimiter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListDelimiter
Auto Trait Implementations§
impl Freeze for ListDelimiter
impl RefUnwindSafe for ListDelimiter
impl Send for ListDelimiter
impl Sync for ListDelimiter
impl Unpin for ListDelimiter
impl UnsafeUnpin for ListDelimiter
impl UnwindSafe for ListDelimiter
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