pub struct TraitItemVerbatim {
pub tts: TokenStream,
}Expand description
Tokens within the definition of a trait not interpreted by Syn.
This type is available if Syn is built with the "full" feature.
Fields§
§tts: TokenStreamTrait Implementations§
Source§impl Clone for TraitItemVerbatim
impl Clone for TraitItemVerbatim
Source§fn clone(&self) -> TraitItemVerbatim
fn clone(&self) -> TraitItemVerbatim
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 TraitItemVerbatim
impl Debug for TraitItemVerbatim
Source§impl From<TraitItemVerbatim> for TraitItem
impl From<TraitItemVerbatim> for TraitItem
Source§fn from(e: TraitItemVerbatim) -> TraitItem
fn from(e: TraitItemVerbatim) -> TraitItem
Converts to this type from the input type.
Source§impl Hash for TraitItemVerbatim
impl Hash for TraitItemVerbatim
Source§impl PartialEq for TraitItemVerbatim
impl PartialEq for TraitItemVerbatim
Source§impl ToTokens for TraitItemVerbatim
impl ToTokens for TraitItemVerbatim
impl Eq for TraitItemVerbatim
Auto Trait Implementations§
impl Freeze for TraitItemVerbatim
impl RefUnwindSafe for TraitItemVerbatim
impl !Send for TraitItemVerbatim
impl !Sync for TraitItemVerbatim
impl Unpin for TraitItemVerbatim
impl UnwindSafe for TraitItemVerbatim
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.