Struct rustc_metadata::creader::CrateMetadataRef

source ·
pub(crate) struct CrateMetadataRef<'a> {
    pub cdata: &'a CrateMetadata,
    pub cstore: &'a CStore,
}
Expand description

A reference to CrateMetadata that can also give access to whole crate store when necessary.

Fields§

§cdata: &'a CrateMetadata§cstore: &'a CStore

Implementations§

source§

impl<'a, 'tcx> CrateMetadataRef<'a>

source

fn missing(self, descr: &str, id: DefIndex) -> !

source

fn raw_proc_macro(self, id: DefIndex) -> &'a ProcMacro

source

fn opt_item_name(self, item_index: DefIndex) -> Option<Symbol>

source

fn item_name(self, item_index: DefIndex) -> Symbol

source

fn opt_item_ident(self, item_index: DefIndex, sess: &Session) -> Option<Ident>

source

fn item_ident(self, item_index: DefIndex, sess: &Session) -> Ident

source

pub(super) fn map_encoded_cnum_to_current(self, cnum: CrateNum) -> CrateNum

source

fn def_kind(self, item_id: DefIndex) -> DefKind

source

fn get_span(self, index: DefIndex, sess: &Session) -> Span

source

fn load_proc_macro(self, id: DefIndex, tcx: TyCtxt<'tcx>) -> SyntaxExtension

source

fn get_explicit_item_bounds( self, index: DefIndex, tcx: TyCtxt<'tcx> ) -> EarlyBinder<&'tcx [(Clause<'tcx>, Span)]>

source

fn get_explicit_item_super_predicates( self, index: DefIndex, tcx: TyCtxt<'tcx> ) -> EarlyBinder<&'tcx [(Clause<'tcx>, Span)]>

source

fn get_variant( self, kind: DefKind, index: DefIndex, parent_did: DefId ) -> (VariantIdx, VariantDef)

source

fn get_adt_def(self, item_id: DefIndex, tcx: TyCtxt<'tcx>) -> AdtDef<'tcx>

source

fn get_visibility(self, id: DefIndex) -> Visibility<DefId>

source

fn get_trait_item_def_id(self, id: DefIndex) -> Option<DefId>

source

fn get_expn_that_defined(self, id: DefIndex, sess: &Session) -> ExpnId

source

fn get_debugger_visualizers(self) -> Vec<DebuggerVisualizerFile>

source

fn get_lib_features(self) -> LibFeatures

Iterates over all the stability attributes in the given crate.

source

fn get_stability_implications( self, tcx: TyCtxt<'tcx> ) -> &'tcx [(Symbol, Symbol)]

Iterates over the stability implications in the given crate (when a #[unstable] attribute has an implied_by meta item, then the mapping from the implied feature to the actual feature is a stability implication).

source

fn get_lang_items(self, tcx: TyCtxt<'tcx>) -> &'tcx [(DefId, LangItem)]

Iterates over the language items in the given crate.

source

fn get_stripped_cfg_items( self, cnum: CrateNum, tcx: TyCtxt<'tcx> ) -> &'tcx [StrippedCfgItem]

source

fn get_diagnostic_items(self) -> DiagnosticItems

Iterates over the diagnostic items in the given crate.

source

fn get_mod_child(self, id: DefIndex, sess: &Session) -> ModChild

source

fn get_module_children( self, id: DefIndex, sess: &'a Session ) -> impl Iterator<Item = ModChild> + 'a

Iterates over all named children of the given module, including both proper items and reexports. Module here is understood in name resolution sense - it can be a mod item, or a crate root, or an enum, or a trait.

source

fn is_ctfe_mir_available(self, id: DefIndex) -> bool

source

fn is_item_mir_available(self, id: DefIndex) -> bool

source

fn cross_crate_inlinable(self, id: DefIndex) -> bool

source

fn get_fn_has_self_parameter(self, id: DefIndex, sess: &'a Session) -> bool

source

fn get_associated_item_or_field_def_ids( self, id: DefIndex ) -> impl Iterator<Item = DefId> + 'a

source

fn get_associated_item(self, id: DefIndex, sess: &'a Session) -> AssocItem

source

fn get_ctor(self, node_id: DefIndex) -> Option<(CtorKind, DefId)>

source

fn get_item_attrs( self, id: DefIndex, sess: &'a Session ) -> impl Iterator<Item = Attribute> + 'a

source

fn get_inherent_implementations_for_type( self, tcx: TyCtxt<'tcx>, id: DefIndex ) -> &'tcx [DefId]

source

fn get_traits(self) -> impl Iterator<Item = DefId> + 'a

Decodes all traits in the crate (for rustdoc and rustc diagnostics).

source

fn get_trait_impls(self) -> impl Iterator<Item = DefId> + 'a

Decodes all trait impls in the crate (for rustdoc).

source

fn get_incoherent_impls( self, tcx: TyCtxt<'tcx>, simp: SimplifiedType ) -> &'tcx [DefId]

source

fn get_implementations_of_trait( self, tcx: TyCtxt<'tcx>, trait_def_id: DefId ) -> &'tcx [(DefId, Option<SimplifiedType>)]

source

fn get_native_libraries( self, sess: &'a Session ) -> impl Iterator<Item = NativeLib> + 'a

source

fn get_proc_macro_quoted_span(self, index: usize, sess: &Session) -> Span

source

fn get_foreign_modules( self, sess: &'a Session ) -> impl Iterator<Item = ForeignModule> + '_

source

fn get_dylib_dependency_formats( self, tcx: TyCtxt<'tcx> ) -> &'tcx [(CrateNum, LinkagePreference)]

source

fn get_missing_lang_items(self, tcx: TyCtxt<'tcx>) -> &'tcx [LangItem]

source

fn exported_symbols( self, tcx: TyCtxt<'tcx> ) -> &'tcx [(ExportedSymbol<'tcx>, SymbolExportInfo)]

source

fn get_macro(self, id: DefIndex, sess: &Session) -> MacroDef

source

fn def_key(self, index: DefIndex) -> DefKey

source

fn def_path(self, id: DefIndex) -> DefPath

source

fn def_path_hash(self, index: DefIndex) -> DefPathHash

source

fn def_path_hash_to_def_index(self, hash: DefPathHash) -> DefIndex

source

fn expn_hash_to_expn_id( self, sess: &Session, index_guess: u32, hash: ExpnHash ) -> ExpnId

source

fn imported_source_file( self, source_file_index: u32, sess: &Session ) -> ImportedSourceFile

Imports the source_map from an external crate into the source_map of the crate currently being compiled (the “local crate”).

The import algorithm works analogous to how AST items are inlined from an external crate’s metadata: For every SourceFile in the external source_map an ‘inline’ copy is created in the local source_map. The correspondence relation between external and local SourceFiles is recorded in the ImportedSourceFile objects returned from this function. When an item from an external crate is later inlined into this crate, this correspondence information is used to translate the span information of the inlined item so that it refers the correct positions in the local source_map (see <decoder::DecodeContext as SpecializedDecoder<Span>>).

The import algorithm in the function below will reuse SourceFiles already existing in the local source_map. For example, even if the SourceFile of some source file of libstd gets imported many times, there will only ever be one SourceFile object for the corresponding file in the local source_map.

Note that imported SourceFiles do not actually contain the source code of the file they represent, just information about length, line breaks, and multibyte characters. This information is enough to generate valid debuginfo for items inlined from other crates.

Proc macro crates don’t currently export spans, so this function does not have to work for them.

source

fn get_attr_flags(self, index: DefIndex) -> AttrFlags

source

fn get_intrinsic(self, index: DefIndex) -> Option<IntrinsicDef>

Methods from Deref<Target = CrateMetadata>§

source

pub(crate) fn dependencies(&self) -> impl Iterator<Item = CrateNum> + '_

source

pub(crate) fn source(&self) -> &CrateSource

source

pub(crate) fn dep_kind(&self) -> CrateDepKind

source

pub(crate) fn used(&self) -> bool

source

pub(crate) fn required_panic_strategy(&self) -> Option<PanicStrategy>

source

pub(crate) fn needs_panic_runtime(&self) -> bool

source

pub(crate) fn is_panic_runtime(&self) -> bool

source

pub(crate) fn is_profiler_runtime(&self) -> bool

source

pub(crate) fn needs_allocator(&self) -> bool

source

pub(crate) fn has_global_allocator(&self) -> bool

source

pub(crate) fn has_alloc_error_handler(&self) -> bool

source

pub(crate) fn has_default_lib_allocator(&self) -> bool

source

pub(crate) fn is_proc_macro_crate(&self) -> bool

source

pub(crate) fn name(&self) -> Symbol

source

pub(crate) fn hash(&self) -> Svh

source

fn num_def_ids(&self) -> usize

source

fn local_def_id(&self, index: DefIndex) -> DefId

source

fn reverse_translate_def_id(&self, did: DefId) -> Option<DefId>

Trait Implementations§

source§

impl<'a> Clone for CrateMetadataRef<'a>

source§

fn clone(&self) -> CrateMetadataRef<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Deref for CrateMetadataRef<'_>

§

type Target = CrateMetadata

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'a, 'tcx> Metadata<'a, 'tcx> for CrateMetadataRef<'a>

source§

fn blob(self) -> &'a MetadataBlob

source§

fn cdata(self) -> Option<CrateMetadataRef<'a>>

source§

fn sess(self) -> Option<&'tcx Session>

source§

fn tcx(self) -> Option<TyCtxt<'tcx>>

source§

fn decoder(self, pos: usize) -> DecodeContext<'a, 'tcx>

source§

impl<'a> Copy for CrateMetadataRef<'a>

Auto Trait Implementations§

§

impl<'a> DynSend for CrateMetadataRef<'a>

§

impl<'a> DynSync for CrateMetadataRef<'a>

§

impl<'a> Freeze for CrateMetadataRef<'a>

§

impl<'a> !RefUnwindSafe for CrateMetadataRef<'a>

§

impl<'a> !Send for CrateMetadataRef<'a>

§

impl<'a> !Sync for CrateMetadataRef<'a>

§

impl<'a> Unpin for CrateMetadataRef<'a>

§

impl<'a> !UnwindSafe for CrateMetadataRef<'a>

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
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<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for T
where T: Copy,

source§

fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T

source§

fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T> ) -> &'a mut [T]

source§

impl<'tcx, T> ArenaAllocatable<'tcx, IsCopy> for T
where T: Copy,

source§

fn allocate_on<'a>(self, arena: &'a Arena<'tcx>) -> &'a mut T

source§

fn allocate_from_iter<'a>( arena: &'a Arena<'tcx>, iter: impl IntoIterator<Item = T> ) -> &'a mut [T]

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, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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<P> IntoQueryParam<P> for P

source§

impl<T> MaybeResult<T> for T

§

type Error = !

source§

fn from(_: Result<T, <T as MaybeResult<T>>::Error>) -> T

source§

fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

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<'tcx, T> ToPredicate<'tcx, T> for T

source§

fn to_predicate(self, _tcx: TyCtxt<'tcx>) -> T

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<Tcx, T> Value<Tcx> for T
where Tcx: DepContext,

source§

default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed ) -> T

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
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

source§

impl<T> ErasedDestructor for T
where T: 'static,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 16 bytes