pub enum ImportableId {
Constant(ConstantId),
Submodule(SubmoduleId),
FreeFunction(FreeFunctionId),
Struct(StructId),
Enum(EnumId),
Variant(VariantId),
TypeAlias(ModuleTypeAliasId),
ImplAlias(ImplAliasId),
Trait(TraitId),
Impl(ImplDefId),
ExternType(ExternTypeId),
ExternFunction(ExternFunctionId),
}
Expand description
Id for an item that can be brought into scope with a use
statement.
Basically ModuleItemId
without UseId
and with VariantId
.
Variants§
Constant(ConstantId)
Submodule(SubmoduleId)
FreeFunction(FreeFunctionId)
Struct(StructId)
Enum(EnumId)
Variant(VariantId)
TypeAlias(ModuleTypeAliasId)
ImplAlias(ImplAliasId)
Trait(TraitId)
Impl(ImplDefId)
ExternType(ExternTypeId)
ExternFunction(ExternFunctionId)
Trait Implementations§
Source§impl Clone for ImportableId
impl Clone for ImportableId
Source§fn clone(&self) -> ImportableId
fn clone(&self) -> ImportableId
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 ImportableId
impl Debug for ImportableId
Source§impl<T: ?Sized + Upcast<dyn DefsGroup + 'static>> DebugWithDb<T> for ImportableId
impl<T: ?Sized + Upcast<dyn DefsGroup + 'static>> DebugWithDb<T> for ImportableId
Source§impl Hash for ImportableId
impl Hash for ImportableId
Source§impl LanguageElementId for ImportableId
impl LanguageElementId for ImportableId
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 ImportableId
impl NamedLanguageElementId for ImportableId
fn name(&self, db: &dyn DefsGroup) -> SmolStr
fn name_identifier(&self, db: &dyn DefsGroup) -> TerminalIdentifier
Source§impl OptionFrom<ImportableId> for ConstantId
impl OptionFrom<ImportableId> for ConstantId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for EnumId
impl OptionFrom<ImportableId> for EnumId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for ExternFunctionId
impl OptionFrom<ImportableId> for ExternFunctionId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for ExternTypeId
impl OptionFrom<ImportableId> for ExternTypeId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for FreeFunctionId
impl OptionFrom<ImportableId> for FreeFunctionId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for ImplAliasId
impl OptionFrom<ImportableId> for ImplAliasId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for ImplDefId
impl OptionFrom<ImportableId> for ImplDefId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for ModuleTypeAliasId
impl OptionFrom<ImportableId> for ModuleTypeAliasId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for StructId
impl OptionFrom<ImportableId> for StructId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for SubmoduleId
impl OptionFrom<ImportableId> for SubmoduleId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for TraitId
impl OptionFrom<ImportableId> for TraitId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl OptionFrom<ImportableId> for VariantId
impl OptionFrom<ImportableId> for VariantId
fn option_from(other: ImportableId) -> Option<Self>
Source§impl PartialEq for ImportableId
impl PartialEq for ImportableId
impl Copy for ImportableId
impl Eq for ImportableId
impl StructuralPartialEq for ImportableId
Auto Trait Implementations§
impl Freeze for ImportableId
impl RefUnwindSafe for ImportableId
impl Send for ImportableId
impl Sync for ImportableId
impl Unpin for ImportableId
impl UnwindSafe for ImportableId
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§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