pub struct TypeVerbatim {
pub tts: TokenStream,
}
Expand description
Tokens in type 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 TypeVerbatim
impl Clone for TypeVerbatim
Source§fn clone(&self) -> TypeVerbatim
fn clone(&self) -> TypeVerbatim
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 TypeVerbatim
impl Debug for TypeVerbatim
Source§impl From<TypeVerbatim> for Type
impl From<TypeVerbatim> for Type
Source§fn from(e: TypeVerbatim) -> Type
fn from(e: TypeVerbatim) -> Type
Converts to this type from the input type.
Source§impl Hash for TypeVerbatim
impl Hash for TypeVerbatim
Source§impl PartialEq for TypeVerbatim
impl PartialEq for TypeVerbatim
Source§impl ToTokens for TypeVerbatim
impl ToTokens for TypeVerbatim
impl Eq for TypeVerbatim
Auto Trait Implementations§
impl Freeze for TypeVerbatim
impl RefUnwindSafe for TypeVerbatim
impl !Send for TypeVerbatim
impl !Sync for TypeVerbatim
impl Unpin for TypeVerbatim
impl UnwindSafe for TypeVerbatim
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.