Enum syn::Type[][src]

pub enum Type {
    Slice(TypeSlice),
    Array(TypeArray),
    Ptr(TypePtr),
    Reference(TypeReference),
    BareFn(TypeBareFn),
    Never(TypeNever),
    Tuple(TypeTuple),
    Path(TypePath),
    TraitObject(TypeTraitObject),
    ImplTrait(TypeImplTrait),
    Paren(TypeParen),
    Group(TypeGroup),
    Infer(TypeInfer),
    Macro(TypeMacro),
    Verbatim(TypeVerbatim),
}
[]

The possible types that a Rust value could have.

This type is available if Syn is built with the "derive" or "full" feature.

Syntax tree enum

This type is a syntax tree enum.

Variants

[]

A dynamically sized slice type: [T].

This type is available if Syn is built with the "derive" or "full" feature.

[]

A fixed size array type: [T; n].

This type is available if Syn is built with the "derive" or "full" feature.

[]

A raw pointer type: *const T or *mut T.

This type is available if Syn is built with the "derive" or "full" feature.

[]

A reference type: &'a T or &'a mut T.

This type is available if Syn is built with the "derive" or "full" feature.

[]

A bare function type: fn(usize) -> bool.

This type is available if Syn is built with the "derive" or "full" feature.

[]

The never type: !.

This type is available if Syn is built with the "derive" or "full" feature.

[]

A tuple type: (A, B, C, String).

This type is available if Syn is built with the "derive" or "full" feature.

[]

A path like std::slice::Iter, optionally qualified with a self-type as in <Vec<T> as SomeTrait>::Associated.

Type arguments are stored in the Path itself.

This type is available if Syn is built with the "derive" or "full" feature.

[]

A trait object type Bound1 + Bound2 + Bound3 where Bound is a trait or a lifetime.

This type is available if Syn is built with the "derive" or "full" feature.

[]

An impl Bound1 + Bound2 + Bound3 type where Bound is a trait or a lifetime.

This type is available if Syn is built with the "derive" or "full" feature.

[]

A parenthesized type equivalent to the inner type.

This type is available if Syn is built with the "derive" or "full" feature.

[]

A type contained within invisible delimiters.

This type is available if Syn is built with the "derive" or "full" feature.

[]

Indication that a type should be inferred by the compiler: _.

This type is available if Syn is built with the "derive" or "full" feature.

[]

A macro in the type position.

This type is available if Syn is built with the "derive" or "full" feature.

[]

Tokens in type position not interpreted by Syn.

This type is available if Syn is built with the "derive" or "full" feature.

Methods

impl Type
[src]
[]

Trait Implementations

impl From<Type> for FnArg
[src]
[+]

[]

Performs the conversion.

impl Synom for Type
[src]
[+]

[]

A short name of the type being parsed. Read more

impl Clone for Type
[src]
[+]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more

impl From<TypeSlice> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeArray> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypePtr> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeReference> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeBareFn> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeNever> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeTuple> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypePath> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeTraitObject> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeImplTrait> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeParen> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeGroup> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeInfer> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeMacro> for Type
[src]
[+]

[]

Performs the conversion.

impl From<TypeVerbatim> for Type
[src]
[+]

[]

Performs the conversion.

impl ToTokens for Type
[src]
[+]

[]

Write self to the given Tokens. Read more

[]

Convert self directly into a Tokens object. Read more

Auto Trait Implementations

impl !Send for Type

impl !Sync for Type