Enum syn::Ty [−][src]
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 ToTokens for Ty
[src]
[+]
impl ToTokens for Ty
impl Debug for Ty
[src]
[+]
impl Debug for Ty
impl Clone for Ty
[src]
[+]
impl Clone for Ty
impl Eq for Ty
[src]
impl Eq for Ty
impl PartialEq for Ty
[src]
[+]
impl PartialEq for Ty
impl Hash for Ty
[src]
[+]
impl Hash for Ty