Enum rustdoc_types::ItemEnum

source ·
pub enum ItemEnum {
Show 21 variants Module(Module), ExternCrate { name: String, rename: Option<String>, }, Import(Import), Union(Union), Struct(Struct), StructField(Type), Enum(Enum), Variant(Variant), Function(Function), Trait(Trait), TraitAlias(TraitAlias), Impl(Impl), TypeAlias(TypeAlias), Constant { type_: Type, const_: Constant, }, Static(Static), ForeignType, Macro(String), ProcMacro(ProcMacro), Primitive(Primitive), AssocConst { type_: Type, default: Option<String>, }, AssocType { generics: Generics, bounds: Vec<GenericBound>, default: Option<Type>, },
}
Expand description

Specific fields of an item.

Part of Item.

Variants§

§

Module(Module)

A module declaration, e.g. mod foo; or mod foo {}

§

ExternCrate

A crate imported via the extern crate syntax.

Fields

§name: String

The name of the imported crate.

§rename: Option<String>

If the crate is renamed, this is its name in the crate.

§

Import(Import)

An import of 1 or more items into scope, using the use keyword.

§

Union(Union)

A union declaration.

§

Struct(Struct)

A struct declaration.

§

StructField(Type)

A field of a struct.

§

Enum(Enum)

An enum declaration.

§

Variant(Variant)

A variant of a enum.

§

Function(Function)

A function declaration (including methods and other associated functions)

§

Trait(Trait)

A trait declaration.

§

TraitAlias(TraitAlias)

A trait alias declaration, e.g. trait Int = Add + Sub + Mul + Div;

See the tracking issue

§

Impl(Impl)

An impl block.

§

TypeAlias(TypeAlias)

A type alias declaration, e.g. type Pig = std::borrow::Cow<'static, str>;

§

Constant

The declaration of a constant, e.g. const GREETING: &str = "Hi :3";

Fields

§type_: Type

The type of the constant.

§const_: Constant

The declared constant itself.

§

Static(Static)

A declaration of a static.

§

ForeignType

types from an extern block.

See the tracking issue

§

Macro(String)

A macro_rules! declarative macro. Contains a single string with the source representation of the macro with the patterns stripped.

§

ProcMacro(ProcMacro)

A procedural macro.

§

Primitive(Primitive)

A primitive type, e.g. u32.

Items of this kind only come from the core library.

§

AssocConst

An associated constant of a trait or a type.

Fields

§type_: Type

The type of the constant.

§default: Option<String>

The stringified expression for the default value, if provided, e.g.

const X: usize = 640 * 1024;
//               ^^^^^^^^^^
§

AssocType

An associated type of a trait or a type.

Fields

§generics: Generics

The generic parameters and where clauses on ahis associated type.

§bounds: Vec<GenericBound>

The bounds for this associated type. e.g.

trait IntoIterator {
    type Item;
    type IntoIter: Iterator<Item = Self::Item>;
//                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
}
§default: Option<Type>

The default for this type, if provided, e.g.

type X = usize;
//       ^^^^^

Trait Implementations§

source§

impl Clone for ItemEnum

source§

fn clone(&self) -> ItemEnum

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ItemEnum

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for ItemEnum

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Hash for ItemEnum

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for ItemEnum

source§

fn eq(&self, other: &ItemEnum) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for ItemEnum

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for ItemEnum

source§

impl StructuralPartialEq for ItemEnum

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,