pub enum ListSeparator {
Comma,
Space,
CommaSpace,
}
Expand description
A separator type for a list of values.
Variants§
Trait Implementations§
Source§impl Clone for ListSeparator
impl Clone for ListSeparator
Source§fn clone(&self) -> ListSeparator
fn clone(&self) -> ListSeparator
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 ListSeparator
impl Debug for ListSeparator
Source§impl PartialEq for ListSeparator
impl PartialEq for ListSeparator
impl Copy for ListSeparator
impl StructuralPartialEq for ListSeparator
Auto Trait Implementations§
impl Freeze for ListSeparator
impl RefUnwindSafe for ListSeparator
impl Send for ListSeparator
impl Sync for ListSeparator
impl Unpin for ListSeparator
impl UnwindSafe for ListSeparator
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