pub struct ItemRefContents {
pub def_id: DefId,
pub generic_args: Vec<GenericArg>,
pub impl_exprs: Vec<ImplExpr>,
pub in_trait: Option<ImplExpr>,
pub has_param: bool,
pub has_non_lt_param: bool,
}Expand description
Contents of ItemRef.
Fields§
§def_id: DefIdThe item being refered to.
generic_args: Vec<GenericArg>The generics passed to the item. If in_trait is Some, these are only the generics of
the method/type/const itself; generics for the traits are available in
in_trait.unwrap().trait.
impl_exprs: Vec<ImplExpr>Witnesses of the trait clauses required by the item, e.g. T: Sized for Option<T> or B: ToOwned for Cow<'a, B>. Same as above, for associated items this only includes clauses
for the item itself.
in_trait: Option<ImplExpr>If we’re referring to a trait associated item, this gives the trait clause/impl we’re referring to.
has_param: boolWhether this contains any reference to a type/lifetime/const parameter.
has_non_lt_param: boolWhether this contains any reference to a type/const parameter.
Implementations§
Trait Implementations§
Source§impl Clone for ItemRefContents
impl Clone for ItemRefContents
Source§fn clone(&self) -> ItemRefContents
fn clone(&self) -> ItemRefContents
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ItemRefContents
impl Debug for ItemRefContents
Source§impl Hash for ItemRefContents
impl Hash for ItemRefContents
Source§impl PartialEq for ItemRefContents
impl PartialEq for ItemRefContents
impl Eq for ItemRefContents
impl StructuralPartialEq for ItemRefContents
Auto Trait Implementations§
impl Freeze for ItemRefContents
impl RefUnwindSafe for ItemRefContents
impl Send for ItemRefContents
impl Sync for ItemRefContents
impl Unpin for ItemRefContents
impl UnwindSafe for ItemRefContents
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<I, T> ExtractContext<I, ()> for T
impl<I, T> ExtractContext<I, ()> for T
§fn extract_context(self, _original_input: I)
fn extract_context(self, _original_input: I)
Given the context attached to a nom error, and given the original
input to the nom parser, extract more the useful context information. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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§impl<I> RecreateContext<I> for I
impl<I> RecreateContext<I> for I
§fn recreate_context(_original_input: I, tail: I) -> I
fn recreate_context(_original_input: I, tail: I) -> I
Given the original input, as well as the context reported by nom,
recreate a context in the original string where the error occurred. Read more