pub enum ImplItemId {
Function(ImplFunctionId),
Type(ImplTypeDefId),
Constant(ImplConstantDefId),
Impl(ImplImplDefId),
}
Expand description
Id for direct children of an impl.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ImplItemId
impl Clone for ImplItemId
Source§fn clone(&self) -> ImplItemId
fn clone(&self) -> ImplItemId
Returns a copy 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 ImplItemId
impl Debug for ImplItemId
Source§impl<T: ?Sized + Upcast<dyn DefsGroup + 'static>> DebugWithDb<T> for ImplItemId
impl<T: ?Sized + Upcast<dyn DefsGroup + 'static>> DebugWithDb<T> for ImplItemId
Source§impl Hash for ImplItemId
impl Hash for ImplItemId
Source§impl LanguageElementId for ImplItemId
impl LanguageElementId for ImplItemId
fn module_file_id(&self, db: &dyn DefsGroup) -> ModuleFileId
fn untyped_stable_ptr(&self, db: &dyn DefsGroup) -> SyntaxStablePtrId
fn stable_location(&self, db: &dyn DefsGroup) -> StableLocation
fn parent_module(&self, db: &dyn DefsGroup) -> ModuleId
fn file_index(&self, db: &dyn DefsGroup) -> FileIndex
Source§impl NamedLanguageElementId for ImplItemId
impl NamedLanguageElementId for ImplItemId
Source§impl OptionFrom<ImplItemId> for ImplConstantDefId
impl OptionFrom<ImplItemId> for ImplConstantDefId
fn option_from(other: ImplItemId) -> Option<Self>
Source§impl OptionFrom<ImplItemId> for ImplFunctionId
impl OptionFrom<ImplItemId> for ImplFunctionId
fn option_from(other: ImplItemId) -> Option<Self>
Source§impl OptionFrom<ImplItemId> for ImplImplDefId
impl OptionFrom<ImplItemId> for ImplImplDefId
fn option_from(other: ImplItemId) -> Option<Self>
Source§impl OptionFrom<ImplItemId> for ImplTypeDefId
impl OptionFrom<ImplItemId> for ImplTypeDefId
fn option_from(other: ImplItemId) -> Option<Self>
Source§impl OptionFrom<LookupItemId> for ImplItemId
impl OptionFrom<LookupItemId> for ImplItemId
fn option_from(other: LookupItemId) -> Option<Self>
Source§impl PartialEq for ImplItemId
impl PartialEq for ImplItemId
impl Copy for ImplItemId
impl Eq for ImplItemId
impl StructuralPartialEq for ImplItemId
Auto Trait Implementations§
impl Freeze for ImplItemId
impl RefUnwindSafe for ImplItemId
impl Send for ImplItemId
impl Sync for ImplItemId
impl Unpin for ImplItemId
impl UnwindSafe for ImplItemId
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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