Skip to main content

ImplExprKind

Enum ImplExprKind 

Source
pub enum ImplExprKind {
    Self_,
    Concrete(TraitGoal),
    LocalBound {
        id: Symbol,
    },
    Parent {
        impl_: ImplExpr,
        ident: ImplIdent,
    },
    Projection {
        impl_: ImplExpr,
        item: GlobalId,
        ident: ImplIdent,
    },
    ImplApp {
        impl_: ImplExpr,
        args: Vec<ImplExpr>,
    },
    Dyn,
    Builtin(TraitGoal),
    Error(ErrorNode),
}
Expand description

Represents all the kinds of impl expr.

§Example:

In the snippet below, the clone method on x corresponds to the implementation of Clone derived for Vec<T> (ImplApp) given the LocalBound on T.

fn f<T: Clone>(x: Vec<T>) -> Vec<T> {
  x.clone()
}

Variants§

§

Self_

The trait implementation being defined.

§Example:

The impl expr for Type: Trait used in self.f() is Self_.

impl Trait for Type {
    fn f(&self) {...}
    fn g(&self) {self.f()}
}
§

Concrete(TraitGoal)

A concrete impl block.

§Example

impl Clone for Type { // Consider this `impl` is called `impl0`
    ...
}
fn f(x: Type) {
    x.clone() // Here `clone` comes from `Concrete(impl0)`
}
§

LocalBound

A bound introduced by a generic clause.

§Example:

fn f<T: Clone>(x: T) -> T {
  x.clone() // Here the method comes from the bound `T: Clone`
}

Fields

§id: Symbol

Local identifier to a bound.

§

Parent

A parent implementation.

§Example:

trait SubTrait: Clone {}
fn f<T: SubTrait>(x: T) -> T {
  x.clone() // Here the method comes from the parent of the bound `T: SubTrait`
}

Fields

§impl_: ImplExpr

Parent implementation

§ident: ImplIdent

Which implementation to pick in the parent

§

Projection

A projected associated implementation.

§Example:

In this snippet, T::Item is an AssociatedType where the subsequent ImplExpr is a type projection of ITerator.

fn f<T: Iterator>(x: T) -> Option<T::Item> {
    x.next()
}

Fields

§impl_: ImplExpr

The base implementation from which we project

§item: GlobalId

The item in the trait implemented by impl_

§ident: ImplIdent

Which implementation to pick on the item

§

ImplApp

An instantiation of a generic implementation.

§Example:

fn f<T: Clone>(x: Vec<T>) -> Vec<T> {
  x.clone() // The `Clone` implementation for `Vec` is instantiated with the local bound `T: Clone`
}

Fields

§impl_: ImplExpr

The head of the application

§args: Vec<ImplExpr>

The arguments of the application

§

Dyn

The implementation provided by a dyn.

§

Builtin(TraitGoal)

A trait implemented natively by rust.

§

Error(ErrorNode)

Fallback constructor to carry errors.

Trait Implementations§

Source§

impl AnyFragment for ImplExprKind

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 ImplExprKind

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 ImplExprKind

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 ImplExprKind

Source§

fn clone(&self) -> ImplExprKind

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 ImplExprKind

Source§

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

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

impl<'de> Deserialize<'de> for ImplExprKind

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 ImplExprKind
where V: Visitor + Visit<'s, TraitGoal> + Visit<'s, Symbol> + Visit<'s, ImplExpr> + Visit<'s, ImplIdent> + Visit<'s, GlobalId> + Visit<'s, Vec<ImplExpr>> + 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 ImplExprKind

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 ImplExprKind

Source§

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

Source§

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

Converts to this type from the input type.
Source§

impl From<ImplExprKind> for Fragment

Source§

fn from(fragment: ImplExprKind) -> Self

Converts to this type from the input type.
Source§

impl Hash for ImplExprKind

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 ImplExprKind

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 ImplExprKind

Source§

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

Source§

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

Source§

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

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 ImplExprKind

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