Struct devise::syn::ItemImpl [−][src]
pub struct ItemImpl {
pub attrs: Vec<Attribute, Global>,
pub defaultness: Option<Default>,
pub unsafety: Option<Unsafe>,
pub impl_token: Impl,
pub generics: Generics,
pub trait_: Option<(Option<Bang>, Path, For)>,
pub self_ty: Box<Type, Global>,
pub brace_token: Brace,
pub items: Vec<ImplItem, Global>,
}Expand description
An impl block providing trait or associated items: impl<A> Trait for Data<A> { ... }.
This type is available if Syn is built with the "full" feature.
Fields
attrs: Vec<Attribute, Global>defaultness: Option<Default>unsafety: Option<Unsafe>impl_token: Implgenerics: Genericstrait_: Option<(Option<Bang>, Path, For)>Trait this impl implements.
self_ty: Box<Type, Global>The Self type of the impl.
brace_token: Braceitems: Vec<ImplItem, Global>Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ItemImpl
impl UnwindSafe for ItemImpl
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a Span covering the complete contents of this syntax tree
node, or Span::call_site() if this node is empty. Read more