[][src]Enum syn::Ty

pub enum Ty {
    Slice(Box<Ty>),
    Array(Box<Ty>, ConstExpr),
    Ptr(Box<MutTy>),
    Rptr(Option<Lifetime>, Box<MutTy>),
    BareFn(Box<BareFnTy>),
    Never,
    Tup(Vec<Ty>),
    Path(Option<QSelf>, Path),
    TraitObject(Vec<TyParamBound>),
    ImplTrait(Vec<TyParamBound>),
    Paren(Box<Ty>),
    Infer,
    Mac(Mac),
}

The different kinds of types recognized by the compiler

Variants

Slice(Box<Ty>)

A variable-length array ([T])

Array(Box<Ty>, ConstExpr)

A fixed length array ([T; n])

Ptr(Box<MutTy>)

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

Rptr(Option<Lifetime>, Box<MutTy>)

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

BareFn(Box<BareFnTy>)

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

Never

The never type (!)

Tup(Vec<Ty>)

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

Path(Option<QSelf>, Path)

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

Type parameters are stored in the Path itself

TraitObject(Vec<TyParamBound>)

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

ImplTrait(Vec<TyParamBound>)

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

Paren(Box<Ty>)

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

Infer

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

Mac(Mac)

A macro in the type position.

Trait Implementations

impl Eq for Ty[src]

impl Clone for Ty[src]

impl PartialEq<Ty> for Ty[src]

impl Hash for Ty[src]

impl Debug for Ty[src]

impl ToTokens for Ty[src]

Auto Trait Implementations

impl Send for Ty

impl Unpin for Ty

impl Sync for Ty

impl UnwindSafe for Ty

impl RefUnwindSafe for Ty

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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