Struct flexi_parse::token::LitStrDoubleQuote
source · pub struct LitStrDoubleQuote { /* private fields */ }
Expand description
A string literal delimited by double quotes.
See also DoubleQuotes
.
Implementations§
Trait Implementations§
source§impl Clone for LitStrDoubleQuote
impl Clone for LitStrDoubleQuote
source§fn clone(&self) -> LitStrDoubleQuote
fn clone(&self) -> LitStrDoubleQuote
Returns a copy 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 LitStrDoubleQuote
impl Debug for LitStrDoubleQuote
source§impl Hash for LitStrDoubleQuote
impl Hash for LitStrDoubleQuote
source§impl Ord for LitStrDoubleQuote
impl Ord for LitStrDoubleQuote
source§impl Parse for LitStrDoubleQuote
impl Parse for LitStrDoubleQuote
source§impl PartialEq for LitStrDoubleQuote
impl PartialEq for LitStrDoubleQuote
source§impl PartialOrd for LitStrDoubleQuote
impl PartialOrd for LitStrDoubleQuote
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl ToTokens for LitStrDoubleQuote
Available on crate feature proc-macro2
only.
impl ToTokens for LitStrDoubleQuote
Available on crate feature
proc-macro2
only.source§fn to_tokens(&self, tokens: &mut TokenStream2)
fn to_tokens(&self, tokens: &mut TokenStream2)
source§fn to_token_stream(&self) -> TokenStream2
fn to_token_stream(&self) -> TokenStream2
source§fn into_token_stream(self) -> TokenStream2
fn into_token_stream(self) -> TokenStream2
source§impl ToTokens for LitStrDoubleQuote
impl ToTokens for LitStrDoubleQuote
source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Append
self
to the given TokenStream
.source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert
self
directly into a TokenStream
.source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Convert
self
directly into a TokenStream
.source§impl Token for LitStrDoubleQuote
impl Token for LitStrDoubleQuote
impl Eq for LitStrDoubleQuote
Auto Trait Implementations§
impl RefUnwindSafe for LitStrDoubleQuote
impl Send for LitStrDoubleQuote
impl Sync for LitStrDoubleQuote
impl Unpin for LitStrDoubleQuote
impl UnwindSafe for LitStrDoubleQuote
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