pub struct ModuleItemPtr(pub SyntaxStablePtrId);
Tuple Fields§
§0: SyntaxStablePtrId
Trait Implementations§
Source§impl Clone for ModuleItemPtr
impl Clone for ModuleItemPtr
Source§fn clone(&self) -> ModuleItemPtr
fn clone(&self) -> ModuleItemPtr
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 ModuleItemPtr
impl Debug for ModuleItemPtr
Source§impl From<FunctionWithBodyPtr> for ModuleItemPtr
impl From<FunctionWithBodyPtr> for ModuleItemPtr
Source§fn from(value: FunctionWithBodyPtr) -> Self
fn from(value: FunctionWithBodyPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemConstantPtr> for ModuleItemPtr
impl From<ItemConstantPtr> for ModuleItemPtr
Source§fn from(value: ItemConstantPtr) -> Self
fn from(value: ItemConstantPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemEnumPtr> for ModuleItemPtr
impl From<ItemEnumPtr> for ModuleItemPtr
Source§fn from(value: ItemEnumPtr) -> Self
fn from(value: ItemEnumPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemExternFunctionPtr> for ModuleItemPtr
impl From<ItemExternFunctionPtr> for ModuleItemPtr
Source§fn from(value: ItemExternFunctionPtr) -> Self
fn from(value: ItemExternFunctionPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemExternTypePtr> for ModuleItemPtr
impl From<ItemExternTypePtr> for ModuleItemPtr
Source§fn from(value: ItemExternTypePtr) -> Self
fn from(value: ItemExternTypePtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemHeaderDocPtr> for ModuleItemPtr
impl From<ItemHeaderDocPtr> for ModuleItemPtr
Source§fn from(value: ItemHeaderDocPtr) -> Self
fn from(value: ItemHeaderDocPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemImplAliasPtr> for ModuleItemPtr
impl From<ItemImplAliasPtr> for ModuleItemPtr
Source§fn from(value: ItemImplAliasPtr) -> Self
fn from(value: ItemImplAliasPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemImplPtr> for ModuleItemPtr
impl From<ItemImplPtr> for ModuleItemPtr
Source§fn from(value: ItemImplPtr) -> Self
fn from(value: ItemImplPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemInlineMacroPtr> for ModuleItemPtr
impl From<ItemInlineMacroPtr> for ModuleItemPtr
Source§fn from(value: ItemInlineMacroPtr) -> Self
fn from(value: ItemInlineMacroPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemModulePtr> for ModuleItemPtr
impl From<ItemModulePtr> for ModuleItemPtr
Source§fn from(value: ItemModulePtr) -> Self
fn from(value: ItemModulePtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemStructPtr> for ModuleItemPtr
impl From<ItemStructPtr> for ModuleItemPtr
Source§fn from(value: ItemStructPtr) -> Self
fn from(value: ItemStructPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemTraitPtr> for ModuleItemPtr
impl From<ItemTraitPtr> for ModuleItemPtr
Source§fn from(value: ItemTraitPtr) -> Self
fn from(value: ItemTraitPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemTypeAliasPtr> for ModuleItemPtr
impl From<ItemTypeAliasPtr> for ModuleItemPtr
Source§fn from(value: ItemTypeAliasPtr) -> Self
fn from(value: ItemTypeAliasPtr) -> Self
Converts to this type from the input type.
Source§impl From<ItemUsePtr> for ModuleItemPtr
impl From<ItemUsePtr> for ModuleItemPtr
Source§fn from(value: ItemUsePtr) -> Self
fn from(value: ItemUsePtr) -> Self
Converts to this type from the input type.
Source§impl From<ModuleItemMissingPtr> for ModuleItemPtr
impl From<ModuleItemMissingPtr> for ModuleItemPtr
Source§fn from(value: ModuleItemMissingPtr) -> Self
fn from(value: ModuleItemMissingPtr) -> Self
Converts to this type from the input type.
Source§impl From<ModuleItemPtr> for SyntaxStablePtrId
impl From<ModuleItemPtr> for SyntaxStablePtrId
Source§fn from(ptr: ModuleItemPtr) -> Self
fn from(ptr: ModuleItemPtr) -> Self
Converts to this type from the input type.
Source§impl Hash for ModuleItemPtr
impl Hash for ModuleItemPtr
Source§impl PartialEq for ModuleItemPtr
impl PartialEq for ModuleItemPtr
Source§impl TypedStablePtr for ModuleItemPtr
impl TypedStablePtr for ModuleItemPtr
type SyntaxNode = ModuleItem
Source§fn untyped(&self) -> SyntaxStablePtrId
fn untyped(&self) -> SyntaxStablePtrId
Returns the untyped stable pointer.
Source§fn lookup(&self, db: &dyn SyntaxGroup) -> ModuleItem
fn lookup(&self, db: &dyn SyntaxGroup) -> ModuleItem
Returns the syntax node pointed to by this stable pointer.
impl Copy for ModuleItemPtr
impl Eq for ModuleItemPtr
impl StructuralPartialEq for ModuleItemPtr
Auto Trait Implementations§
impl Freeze for ModuleItemPtr
impl RefUnwindSafe for ModuleItemPtr
impl Send for ModuleItemPtr
impl Sync for ModuleItemPtr
impl Unpin for ModuleItemPtr
impl UnwindSafe for ModuleItemPtr
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