Skip to main content

LinkCollector

Struct LinkCollector 

Source
struct LinkCollector<'a, 'tcx> {
    cx: &'a mut DocContext<'tcx>,
    links: LinkCollection,
}

Fields§

§cx: &'a mut DocContext<'tcx>§links: LinkCollection

Implementations§

Source§

impl<'tcx> LinkCollector<'_, 'tcx>

Source

fn variant_field<'path>( &self, path_str: &'path str, item_id: DefId, module_id: ModId, ) -> Result<(Res, DefId), UnresolvedPath<'path>>

Given a full link, parse it as an enum struct variant.

In particular, this will return an error whenever there aren’t three full path segments left in the link.

Source

fn resolve_path( &self, path_str: &str, ns: Namespace, item_id: DefId, module_id: ModId, ) -> Option<Res>

Convenience wrapper around doc_link_resolutions.

This also handles resolving true and false as booleans. NOTE: doc_link_resolutions knows only about paths, not about types. Associated items will never be resolved by this function.

Source

fn resolve<'path>( &self, path_str: &'path str, ns: Namespace, disambiguator: Option<Disambiguator>, item_id: DefId, module_id: ModId, ) -> Result<Vec<(Res, Option<DefId>)>, UnresolvedPath<'path>>

Resolves a string as a path within a particular namespace. Returns an optional URL fragment in the case of variants and methods.

Source§

impl LinkCollector<'_, '_>

This is the entry point for resolving an intra-doc link.

Returns true if a link could be generated from the given intra-doc information.

This is a very light version of format::href_with_root_path since we’re only interested about whether we can generate a link to an item or not.

  • If original_did is local, then we check if the item is reexported or public.
  • If original_did is not local, then we check if the crate it comes from is a direct public dependency.
Source

fn resolve_ambiguities(&mut self)

Source

fn verify_disambiguator( &self, path_str: &str, kind: DefKind, id: DefId, disambiguator: Option<Disambiguator>, diag_info: &DiagnosticInfo<'_>, ) -> Option<()>

Source

fn report_disambiguator_mismatch( &self, path_str: &str, specified: Disambiguator, resolved: Res, diag_info: &DiagnosticInfo<'_>, )

Source

fn report_rawptr_assoc_feature_gate( &self, dox: &str, ori_link: &MarkdownLinkRange, item: &Item, )

Source

fn resolve_with_disambiguator_cached( &mut self, key: ResolutionInfo, diag: DiagnosticInfo<'_>, cache_errors: bool, ) -> Option<Vec<(Res, Option<UrlFragment>)>>

Source

fn resolve_with_disambiguator( &mut self, key: &ResolutionInfo, diag: DiagnosticInfo<'_>, ) -> Vec<(Res, Option<DefId>)>

After parsing the disambiguator, resolve the main part of the link.

Trait Implementations§

Source§

impl DocVisitor<'_> for LinkCollector<'_, '_>

Source§

fn visit_item(&mut self, item: &Item)

Source§

fn visit_inner_recur(&mut self, kind: &'a ItemKind)

Don’t override!
Source§

fn visit_item_recur(&mut self, item: &'a Item)

Don’t override!
Source§

fn visit_mod(&mut self, m: &'a Module)

Source§

fn visit_crate(&mut self, c: &'a Crate)

This is the main entrypoint of DocVisitor.

Auto Trait Implementations§

§

impl<'a, 'tcx> !RefUnwindSafe for LinkCollector<'a, 'tcx>

§

impl<'a, 'tcx> !Send for LinkCollector<'a, 'tcx>

§

impl<'a, 'tcx> !Sync for LinkCollector<'a, 'tcx>

§

impl<'a, 'tcx> !UnwindSafe for LinkCollector<'a, 'tcx>

§

impl<'a, 'tcx> DynSend for LinkCollector<'a, 'tcx>

§

impl<'a, 'tcx> DynSync for LinkCollector<'a, 'tcx>

§

impl<'a, 'tcx> Freeze for LinkCollector<'a, 'tcx>

§

impl<'a, 'tcx> Unpin for LinkCollector<'a, 'tcx>

§

impl<'a, 'tcx> UnsafeUnpin for LinkCollector<'a, 'tcx>

Blanket Implementations§

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<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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

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<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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

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

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

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

Source§

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

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more

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: 96 bytes