pub enum DelimiterKind {
Parentheses,
Brackets,
Braces,
SingleQuotes,
DoubleQuotes,
Backticks,
}Variants§
Trait Implementations§
Source§impl Clone for DelimiterKind
impl Clone for DelimiterKind
Source§fn clone(&self) -> DelimiterKind
fn clone(&self) -> DelimiterKind
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 moreSource§impl Debug for DelimiterKind
impl Debug for DelimiterKind
Source§impl PartialEq for DelimiterKind
impl PartialEq for DelimiterKind
Source§fn eq(&self, other: &DelimiterKind) -> bool
fn eq(&self, other: &DelimiterKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DelimiterKind
impl Eq for DelimiterKind
impl StructuralPartialEq for DelimiterKind
Auto Trait Implementations§
impl Freeze for DelimiterKind
impl RefUnwindSafe for DelimiterKind
impl Send for DelimiterKind
impl Sync for DelimiterKind
impl Unpin for DelimiterKind
impl UnsafeUnpin for DelimiterKind
impl UnwindSafe for DelimiterKind
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