Struct macro_tools::attr::protected::AttributesOuter   
source · pub struct AttributesOuter(pub Vec<Attribute>);Expand description
Attribute which is outer.
For example: #[ derive( Copy ) ].
Tuple Fields§
§0: Vec<Attribute>Implementations§
Trait Implementations§
source§impl Clone for AttributesOuter
 
impl Clone for AttributesOuter
source§fn clone(&self) -> AttributesOuter
 
fn clone(&self) -> AttributesOuter
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 AttributesOuter
 
impl Debug for AttributesOuter
source§impl Default for AttributesOuter
 
impl Default for AttributesOuter
source§fn default() -> AttributesOuter
 
fn default() -> AttributesOuter
Returns the “default value” for a type. Read more
source§impl From<AttributesOuter> for Vec<Attribute>
 
impl From<AttributesOuter> for Vec<Attribute>
source§fn from(src: AttributesOuter) -> Self
 
fn from(src: AttributesOuter) -> Self
Converts to this type from the input type.
source§impl Parse for AttributesOuter
 
impl Parse for AttributesOuter
fn parse(input: ParseStream<'_>) -> Result<Self>
source§impl PartialEq for AttributesOuter
 
impl PartialEq for AttributesOuter
source§fn eq(&self, other: &AttributesOuter) -> bool
 
fn eq(&self, other: &AttributesOuter) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl ToTokens for AttributesOuter
 
impl ToTokens for AttributesOuter
source§fn to_tokens(&self, tokens: &mut TokenStream)
 
fn to_tokens(&self, tokens: &mut TokenStream)
source§fn to_token_stream(&self) -> TokenStream
 
fn to_token_stream(&self) -> TokenStream
source§fn into_token_stream(self) -> TokenStreamwhere
    Self: Sized,
 
fn into_token_stream(self) -> TokenStreamwhere
    Self: Sized,
impl Eq for AttributesOuter
impl StructuralPartialEq for AttributesOuter
Auto Trait Implementations§
impl Freeze for AttributesOuter
impl RefUnwindSafe for AttributesOuter
impl !Send for AttributesOuter
impl !Sync for AttributesOuter
impl Unpin for AttributesOuter
impl UnwindSafe for AttributesOuter
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> Spanned for Twhere
    T: Spanned + ?Sized,
 
impl<T> Spanned for Twhere
    T: Spanned + ?Sized,
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.