Struct IDMap

Source
pub struct IDMap { /* private fields */ }
Expand description

This is usually used behind a shared reference. For owned version, use CrateDoc instead.

Implementations§

Source§

impl IDMap

Source

pub fn new(krate: Crate) -> IDMap

Source

pub fn dmodule(&self) -> &DModule

Source

pub fn raw_crate_doc(&self) -> &Crate

Source§

impl IDMap

Source

pub fn use_id<T>(&self, id: &str, f: impl FnOnce(&Id) -> T) -> T

Use in a buffered way in hot querys.

Source

pub fn indexmap(&self) -> &IndexMap

Source

pub fn pathmap(&self) -> &PathMap

Source§

impl IDMap

DModule related.

Source

pub fn dmodule_show_prettier(&self) -> DocTree

FIXME: show_prettier should be renamed

Source

pub fn dmodule_item_tree(&self) -> DocTree

This is the default tree view for most cases.

Source§

impl IDMap

Source

pub fn get_doc(&self, id: &str) -> Option<&str>

Source§

impl IDMap

Get the shortest item name only based on IndexMap.

Source

pub fn get_item(&self, id: &str) -> Option<&Item>

Source

pub fn name<S>(&self, id: &S) -> XString
where S: ?Sized + IdAsStr,

  • If the id refers to an Item with a name, use the name;
    • if name is None, try getting the name depending on item type (reexported local items may hit this);
  • If id isn’t in IndexMap, try searching the PathMap for last path component (reexported external items may hit this);
  • otherwise id.
Source§

impl IDMap

Get the external item path only based on PathMap.

Source

pub fn get_path(&self, id: &str) -> Option<&ItemSummary>

Source

pub fn path_with_kind_check<S, K>(&self, id: &S, kind: K) -> XString
where S: ?Sized + IdAsStr, K: Borrow<ItemKind>,

Like path, but with strict item kind checking. If the id doesn’t refer to an ItemSummary with exact given kind, emit a warn.

Source

pub fn path(&self, id: &str) -> XString

Returns the full path if it exists, or name if it exists or id if neither exists.

Source

pub fn path_or_name(&self, id: &str) -> Result<XString, XString>

Like path, but returns the choice for name/id fallback an Err variant.

Trait Implementations§

Source§

impl Default for IDMap

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for IDMap

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for IDMap

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl !Freeze for IDMap

§

impl !RefUnwindSafe for IDMap

§

impl Send for IDMap

§

impl !Sync for IDMap

§

impl Unpin for IDMap

§

impl UnwindSafe for IDMap

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.

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

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.
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<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,