Enum syntex_syntax::ast::Item_
[−]
[src]
pub enum Item_ {
ItemExternCrate(Option<Name>),
ItemUse(P<ViewPath>),
ItemStatic(P<Ty>, Mutability, P<Expr>),
ItemConst(P<Ty>, P<Expr>),
ItemFn(P<FnDecl>, Unsafety, Constness, Abi, Generics, P<Block>),
ItemMod(Mod),
ItemForeignMod(ForeignMod),
ItemTy(P<Ty>, Generics),
ItemEnum(EnumDef, Generics),
ItemStruct(VariantData, Generics),
ItemTrait(Unsafety, Generics, TyParamBounds, Vec<P<TraitItem>>),
ItemDefaultImpl(Unsafety, TraitRef),
ItemImpl(Unsafety, ImplPolarity, Generics, Option<TraitRef>, P<Ty>, Vec<P<ImplItem>>),
ItemMac(Mac),
}Variants
ItemExternCrate | An e.g. | |
ItemUse | A | |
ItemStatic | A | |
ItemConst | A | |
ItemFn | A function declaration | |
ItemMod | A module | |
ItemForeignMod | An external module | |
ItemTy | A type alias, e.g. | |
ItemEnum | An enum definition, e.g. | |
ItemStruct | A struct definition, e.g. | |
ItemTrait | Represents a Trait Declaration | |
ItemDefaultImpl | ||
ItemImpl | An implementation, eg | |
ItemMac | A macro invocation (which includes macro definition) |
Methods
impl Item_[src]
fn descriptive_variant(&self) -> &str
Trait Implementations
Derived Implementations
impl Debug for Item_[src]
impl Hash for Item_[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher1.3.0
Feeds a slice of this type into the state provided.
impl Decodable for Item_[src]
impl Encodable for Item_[src]
impl Eq for Item_[src]
impl PartialEq for Item_[src]
fn eq(&self, __arg_0: &Item_) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Item_) -> bool
This method tests for !=.
impl Clone for Item_[src]
fn clone(&self) -> Item_
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more