Enum syntex_syntax::ext::deriving::generic::ty::Ty
[−]
[src]
pub enum Ty<'a> { Self_, Ptr(Box<Ty<'a>>, PtrTy<'a>), Literal(Path<'a>), Tuple(Vec<Ty<'a>>), }
A type. Supports pointers, Self, and literals
Variants
Self_ | |
Ptr | &/Box/ Ty |
Literal | mod::mod::Type<[lifetime], [Params...]>, including a plain type
parameter, and things like |
Tuple | includes unit |