Skip to main content

TyKind

Enum TyKind 

Source
pub enum TyKind {
Show 13 variants Primitive(PrimitiveTy), App { head: GlobalId, args: Vec<GenericValue>, }, Arrow { inputs: Vec<Ty>, output: Ty, }, Ref { inner: Ty, mutable: bool, region: Region, }, Param(LocalId), Slice(Ty), Array { ty: Ty, length: Box<Expr>, }, RawPointer, AssociatedType { impl_: ImplExpr, item: GlobalId, }, Opaque(GlobalId), Dyn(Vec<DynTraitGoal>), Resugared(ResugaredTyKind), Error(ErrorNode),
}
Expand description

Describes any Rust type (e.g., i32, Vec<T>, fn(i32) -> bool).

Variants§

§

Primitive(PrimitiveTy)

A primitive type.

§Example:

i32, bool

§

App

A type application (generic type).

§Example:

Vec<i32>

Fields

§head: GlobalId

The type being applied (Vec in the example).

§args: Vec<GenericValue>

The arguments ([i32] in the example).

§

Arrow

A function or closure type.

§Example:

fn(i32) -> bool or Fn(i32) -> bool

Fields

§inputs: Vec<Ty>

i32 in the example

§output: Ty

bool in the example

§

Ref

A reference type.

§Example:

&i32, &mut i32

Fields

§inner: Ty

The type inside the reference

§mutable: bool

Is the reference mutable?

§region: Region

The region of this reference

§

Param(LocalId)

A parameter type

§

Slice(Ty)

A slice type.

§Example:

&[i32]

§

Array

An array type.

§Example:

&[i32; 10]

Fields

§ty: Ty

The type of the items of the array

§length: Box<Expr>

The length of the array

§

RawPointer

A raw pointer type

§

AssociatedType

An associated type

§Example:

    fn f<T: Tr>() -> T::A {...}

Fields

§impl_: ImplExpr

Impl expr for Tr<T> in the example

§item: GlobalId

Tr::A in the example

§

Opaque(GlobalId)

An opaque type

§Example:

type Foo = impl Bar;
§

Dyn(Vec<DynTraitGoal>)

A dyn type

§Example:

dyn Tr
§

Resugared(ResugaredTyKind)

A resugared type. This variant is introduced before printing only. Phases must not produce this variant.

§

Error(ErrorNode)

Fallback constructor to carry errors.

Implementations§

Source§

impl TyKind

Source

pub fn tuple(args: Vec<GenericValue>) -> Self

Tuple type

Source

pub fn unit() -> Self

Unit type

Source

pub fn promote(self) -> Ty

Promote to a Ty

Trait Implementations§

Source§

impl AnyFragment for TyKind

Source§

fn type_id() -> FragmentTypeId

Get a type identifier for this fragment.
Source§

fn as_fragment<'a>(&'a self, type_id: FragmentTypeId) -> Option<FragmentRef<'a>>

Coerce as a fragment reference.
Source§

fn as_owned_fragment(&self, type_id: FragmentTypeId) -> Option<Fragment>

Coerce as an owned fragment.
Source§

impl AstVisitable for TyKind

Source§

fn drive_map<V: AstVisitorMut>(&mut self, v: &mut V)

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
Source§

fn drive<V: AstVisitor>(&self, v: &mut V)

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
Source§

impl AstVisitable for TyKind

Source§

fn drive<V: AstEarlyExitVisitor>(&self, v: &mut V) -> ControlFlow<V::Break>

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
Source§

fn drive_mut<V: AstEarlyExitVisitorMut>( &mut self, v: &mut V, ) -> ControlFlow<V::Break>

Recursively visit this type with the provided visitor. This calls the visitor’s visit_$any method if it exists, otherwise visit_inner.
Source§

impl Clone for TyKind

Source§

fn clone(&self) -> TyKind

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TyKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for TyKind

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'s, V> Drive<'s, V> for TyKind
where V: Visitor + Visit<'s, PrimitiveTy> + Visit<'s, GlobalId> + Visit<'s, Vec<GenericValue>> + Visit<'s, Vec<Ty>> + Visit<'s, Ty> + Visit<'s, bool> + Visit<'s, Region> + Visit<'s, LocalId> + Visit<'s, Box<Expr>> + Visit<'s, ImplExpr> + Visit<'s, Vec<DynTraitGoal>> + Visit<'s, ResugaredTyKind> + Visit<'s, ErrorNode>,

Source§

fn drive_inner(&'s self, visitor: &mut V) -> ControlFlow<V::Break>

Call v.visit() on the immediate contents of self.
Source§

impl<'s, V> DriveMut<'s, V> for TyKind

Source§

fn drive_inner_mut(&'s mut self, visitor: &mut V) -> ControlFlow<V::Break>

Call v.visit() on the immediate contents of self.
Source§

impl Eq for TyKind

Source§

impl<'lt> From<&'lt TyKind> for FragmentRef<'lt>

Source§

fn from(fragment: &'lt TyKind) -> Self

Converts to this type from the input type.
Source§

impl From<TyKind> for Fragment

Source§

fn from(fragment: TyKind) -> Self

Converts to this type from the input type.
Source§

impl Hash for TyKind

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl JsonSchema for TyKind

Source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
Source§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
Source§

fn json_schema(generator: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
Source§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
Source§

impl Ord for TyKind

Source§

fn cmp(&self, other: &TyKind) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for TyKind

Source§

fn eq(&self, other: &TyKind) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl PartialOrd for TyKind

Source§

fn partial_cmp(&self, other: &TyKind) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for TyKind

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for TyKind

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> ExtensionPoint for T
where T: Debug + for<'a> Deserialize<'a> + Serialize + JsonSchema + Clone,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> IsBody for T
where T: Clone + 'static,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more