pub struct ExprVerbatim {
pub tts: TokenStream,
}
Expand description
Tokens in expression position not interpreted by Syn.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Fields§
§tts: TokenStream
Trait Implementations§
Source§impl Clone for ExprVerbatim
impl Clone for ExprVerbatim
Source§fn clone(&self) -> ExprVerbatim
fn clone(&self) -> ExprVerbatim
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 ExprVerbatim
impl Debug for ExprVerbatim
Source§impl From<ExprVerbatim> for Expr
impl From<ExprVerbatim> for Expr
Source§fn from(e: ExprVerbatim) -> Expr
fn from(e: ExprVerbatim) -> Expr
Converts to this type from the input type.
Source§impl Hash for ExprVerbatim
impl Hash for ExprVerbatim
Source§impl PartialEq for ExprVerbatim
impl PartialEq for ExprVerbatim
Source§impl ToTokens for ExprVerbatim
impl ToTokens for ExprVerbatim
impl Eq for ExprVerbatim
Auto Trait Implementations§
impl Freeze for ExprVerbatim
impl RefUnwindSafe for ExprVerbatim
impl !Send for ExprVerbatim
impl !Sync for ExprVerbatim
impl Unpin for ExprVerbatim
impl UnwindSafe for ExprVerbatim
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Spanned for Twhere
T: ToTokens,
impl<T> Spanned for Twhere
T: ToTokens,
Source§fn span(&self) -> Span
fn span(&self) -> Span
Returns a
Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty.