Enum syntax::ast::TyKind
[−]
[src]
pub enum TyKind { Slice(P<Ty>), Array(P<Ty>, P<Expr>), Ptr(MutTy), Rptr(Option<Lifetime>, MutTy), BareFn(P<BareFnTy>), Never, Tup(Vec<P<Ty>>), Path(Option<QSelf>, Path), TraitObject(TyParamBounds, TraitObjectSyntax), ImplTrait(TyParamBounds), Paren(P<Ty>), Typeof(P<Expr>), Infer, ImplicitSelf, Mac(Mac), Err, }
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
The different kinds of types recognized by the compiler
Variants
Slice(P<Ty>)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A variable-length slice ([T]
)
Array(P<Ty>, P<Expr>)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A fixed length array ([T; n]
)
Ptr(MutTy)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A raw pointer (*const T
or *mut T
)
Rptr(Option<Lifetime>, MutTy)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A reference (&'a T
or &'a mut T
)
BareFn(P<BareFnTy>)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A bare function (e.g. fn(usize) -> bool
)
Never
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
The never type (!
)
Tup(Vec<P<Ty>>)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A tuple ((A, B, C, D,...)
)
Path(Option<QSelf>, Path)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A path (module::module::...::Type
), optionally
"qualified", e.g. <Vec<T> as SomeTrait>::SomeType
.
Type parameters are stored in the Path itself
TraitObject(TyParamBounds, TraitObjectSyntax)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
A trait object type Bound1 + Bound2 + Bound3
where Bound
is a trait or a lifetime.
ImplTrait(TyParamBounds)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
An impl Bound1 + Bound2 + Bound3
type
where Bound
is a trait or a lifetime.
Paren(P<Ty>)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
No-op; kept solely so that we can pretty-print faithfully
Typeof(P<Expr>)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Unused for now
Infer
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
TyKind::Infer means the type should be inferred instead of it having been specified. This can appear anywhere in a type.
ImplicitSelf
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Inferred type of a self
or &self
argument in a method.
Mac(Mac)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Err
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Placeholder for a kind that has failed to be defined.
Trait Implementations
impl Clone for TyKind
[src]
fn clone(&self) -> TyKind
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for TyKind
[src]
fn eq(&self, __arg_0: &TyKind) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &TyKind) -> bool
[src]
This method tests for !=
.
impl Eq for TyKind
[src]
impl Encodable for TyKind
[src]
fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>
[src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl Decodable for TyKind
[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<TyKind, __D::Error>
[src]
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl Hash for TyKind
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more