[][src]Enum syntax::ast::TyKind

pub enum TyKind {
    Slice(P<Ty>),
    Array(P<Ty>, AnonConst),
    Ptr(MutTy),
    Rptr(Option<Lifetime>, MutTy),
    BareFn(P<BareFnTy>),
    Never,
    Tup(Vec<P<Ty>>),
    Path(Option<QSelf>, Path),
    TraitObject(GenericBoundsTraitObjectSyntax),
    ImplTrait(NodeIdGenericBounds),
    Paren(P<Ty>),
    Typeof(AnonConst),
    Infer,
    ImplicitSelf,
    Mac(Mac),
    Err,
}

The different kinds of types recognized by the compiler.

Variants

A variable-length slice ([T]).

A fixed length array ([T; n]).

A raw pointer (*const T or *mut T).

A reference (&'a T or &'a mut T).

A bare function (e.g., fn(usize) -> bool).

The never type (!).

A tuple ((A, B, C, D,...)).

A path (module::module::...::Type), optionally "qualified", e.g., <Vec<T> as SomeTrait>::SomeType.

Type parameters are stored in the Path itself.

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

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

The NodeId exists to prevent lowering from having to generate NodeIds on the fly, which would complicate the generation of existential type items significantly.

No-op; kept solely so that we can pretty-print faithfully.

Unused for now.

This means the type should be inferred instead of it having been specified. This can appear anywhere in a type.

Inferred type of a self or &self argument in a method.

A macro in the type position.

Placeholder for a kind that has failed to be defined.

Methods

impl TyKind
[src]

Trait Implementations

impl Clone for TyKind
[src]

Performs copy-assignment from source. Read more

impl Debug for TyKind
[src]

impl Encodable for TyKind
[src]

impl Decodable for TyKind
[src]

Auto Trait Implementations

impl !Send for TyKind

impl !Sync for TyKind

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<E> SpecializationError for E
[src]

impl<T> Erased for T
[src]

impl<T> Send for T where
    T: ?Sized
[src]

impl<T> Sync for T where
    T: ?Sized
[src]

impl<T> Erased for T