Skip to main content

ItemKind

Enum ItemKind 

Source
pub enum ItemKind {
    Fn {
        name: GlobalId,
        generics: Generics,
        body: Expr,
        params: Vec<Param>,
        safety: SafetyKind,
    },
    TyAlias {
        name: GlobalId,
        generics: Generics,
        ty: Ty,
    },
    Type {
        name: GlobalId,
        generics: Generics,
        variants: Vec<Variant>,
        is_struct: bool,
    },
    Trait {
        name: GlobalId,
        generics: Generics,
        items: Vec<TraitItem>,
        safety: SafetyKind,
    },
    Impl {
        generics: Generics,
        self_ty: Ty,
        of_trait: (GlobalId, Vec<GenericValue>),
        items: Vec<ImplItem>,
        parent_bounds: Vec<(ImplExpr, ImplIdent)>,
    },
    Alias {
        name: GlobalId,
        item: GlobalId,
    },
    Use {
        path: Vec<String>,
        is_external: bool,
        rename: Option<String>,
    },
    Quote {
        quote: Quote,
        origin: ItemQuoteOrigin,
    },
    RustModule,
    Error(ErrorNode),
    Resugared(ResugaredItemKind),
    NotImplementedYet,
}
Expand description

A top-level item in the module.

Variants§

§

Fn

A function or constant item.

§Example:

fn add<T: Clone>(x: i32, y: i32) -> i32 {
    x + y
}

Constants are represented as functions of arity zero, while functions always have a non-zero arity.

Fields

§name: GlobalId

The identifier of the function.

§Example:

add

§generics: Generics

The generic arguments and constraints of the function.

§Example:

the generic type T and the constraint T: Clone

§body: Expr

The body of the function

§Example:

x + y

§params: Vec<Param>

The parameters of the function.

§Example:

x: i32, y: i32

§safety: SafetyKind

The safety of the function.

§

TyAlias

A type alias.

§Example:

type A = u8;

Fields

§name: GlobalId

Name of the alias

§Example:

A

§generics: Generics

Generic arguments and constraints

§ty: Ty

Original type

§Example:

u8

§

Type

A type definition (struct or enum)

§Example:

enum A {B, C}
struct S {f: u8}

Fields

§name: GlobalId

Name of this type

§Example:

A, S

§generics: Generics

Generic parameters and constraints

§variants: Vec<Variant>

Variants

§Example:

{B, C}

§is_struct: bool

Is this a struct (or an enum)

§

Trait

A trait definition.

§Example:

trait T<A> {
    type Assoc;
    fn m(x: Self::Assoc, y: Self) -> A;
}

Fields

§name: GlobalId

Name of this trait

§Example:

T

§generics: Generics

Generic parameters and constraints

§Example:

<A>

§items: Vec<TraitItem>

Items required to implement the trait

§Example:

type Assoc;, fn m ...;

§safety: SafetyKind

Safe or unsafe

§

Impl

A trait implementation.

§Example:

impl T<u8> for u16 {
    type Assoc = u32;
    fn m(x: u32, y: u16) -> u8 {
        (x as u8) + (y as u8)
    }
}

Fields

§generics: Generics

Generic arguments and constraints

§self_ty: Ty

The type we implement the trait for

§Example:

u16

§of_trait: (GlobalId, Vec<GenericValue>)

Instantiated trait that is being implemented

§Example:

T<u8>

§items: Vec<ImplItem>

Items in this impl

§Example:

fn m ..., type Assoc ...

§parent_bounds: Vec<(ImplExpr, ImplIdent)>

Implementations of traits required for this impl

§

Alias

Internal node introduced by phases, corresponds to an alias to any item.

Fields

§name: GlobalId

New name

§item: GlobalId

Original name

§

Use

A use statement

Fields

§path: Vec<String>

Path to used item(s)

§is_external: bool

Comes from external crate

§rename: Option<String>

Optional as

§

Quote

A Quote node is inserted by phase TransformHaxLibInline to deal with some hax_lib features. For example insertion of verbatim backend code.

Fields

§quote: Quote

Content of the quote

§origin: ItemQuoteOrigin

Description of the quote target position

§

RustModule

A Rust module (mod, inline or not). This exists solely because modules can have attributes relevant to the hax engine.

§

Error(ErrorNode)

Fallback constructor to carry errors.

§

Resugared(ResugaredItemKind)

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

§

NotImplementedYet

Item that is not implemented yet

Implementations§

Source§

impl ItemKind

Source

pub fn promote(self, ident: GlobalId, span: Span) -> Item

Promote to an item

Trait Implementations§

Source§

impl AnyFragment for ItemKind

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 ItemKind

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 ItemKind

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 ItemKind

Source§

fn clone(&self) -> ItemKind

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 ItemKind

Source§

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

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

impl<'de> Deserialize<'de> for ItemKind

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 ItemKind
where V: Visitor + Visit<'s, GlobalId> + Visit<'s, Generics> + Visit<'s, Expr> + Visit<'s, Vec<Param>> + Visit<'s, SafetyKind> + Visit<'s, Ty> + Visit<'s, Vec<Variant>> + Visit<'s, bool> + Visit<'s, Vec<TraitItem>> + Visit<'s, (GlobalId, Vec<GenericValue>)> + Visit<'s, Vec<ImplItem>> + Visit<'s, Vec<(ImplExpr, ImplIdent)>> + Visit<'s, Vec<String>> + Visit<'s, Option<String>> + Visit<'s, Quote> + Visit<'s, ItemQuoteOrigin> + Visit<'s, ErrorNode> + Visit<'s, ResugaredItemKind>,

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 ItemKind

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 ItemKind

Source§

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

Source§

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

Converts to this type from the input type.
Source§

impl From<ItemKind> for Fragment

Source§

fn from(fragment: ItemKind) -> Self

Converts to this type from the input type.
Source§

impl Hash for ItemKind

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 ItemKind

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 ItemKind

Source§

fn cmp(&self, other: &ItemKind) -> 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 ItemKind

Source§

fn eq(&self, other: &ItemKind) -> 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 ItemKind

Source§

fn partial_cmp(&self, other: &ItemKind) -> 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 ItemKind

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 ItemKind

Source§

impl<A: 'static + Clone, P: PrettyAst<A>> ToDocument<P, A> for ItemKind

Source§

fn to_document(&self, printer: &P) -> DocBuilder<A>

Produce a document using the provided printer reference.

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