pub enum StringQuoteStyle {
QuotedSimple,
QuotedSingle,
QuotedRaw,
Unquoted,
}Variants§
Trait Implementations§
Source§impl Clone for StringQuoteStyle
impl Clone for StringQuoteStyle
Source§fn clone(&self) -> StringQuoteStyle
fn clone(&self) -> StringQuoteStyle
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 StringQuoteStyle
Source§impl Debug for StringQuoteStyle
impl Debug for StringQuoteStyle
impl Eq for StringQuoteStyle
Source§impl From<QuoteStyle> for StringQuoteStyle
impl From<QuoteStyle> for StringQuoteStyle
Source§fn from(_: LexerQuoteStyle) -> Self
fn from(_: LexerQuoteStyle) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StringQuoteStyle
impl PartialEq for StringQuoteStyle
impl StructuralPartialEq for StringQuoteStyle
Auto Trait Implementations§
impl Freeze for StringQuoteStyle
impl RefUnwindSafe for StringQuoteStyle
impl Send for StringQuoteStyle
impl Sync for StringQuoteStyle
impl Unpin for StringQuoteStyle
impl UnsafeUnpin for StringQuoteStyle
impl UnwindSafe for StringQuoteStyle
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