pub struct Crate {
    pub root: Id,
    pub crate_version: Option<String>,
    pub includes_private: bool,
    pub index: HashMap<Id, Item>,
    pub paths: HashMap<Id, ItemSummary>,
    pub external_crates: HashMap<u32, ExternalCrate>,
    pub format_version: u32,
}
Expand description

A Crate is the root of the emitted JSON blob. It contains all type/documentation information about the language items in the local crate, as well as info about external items to allow tools to find or link to them.

Fields

root: Id

The id of the root Module item of the local crate.

crate_version: Option<String>

The version string given to --crate-version, if any.

includes_private: bool

Whether or not the output includes private items.

index: HashMap<Id, Item>

A collection of all items in the local crate as well as some external traits and their items that are referenced locally.

paths: HashMap<Id, ItemSummary>

Maps IDs to fully qualified paths and other info helpful for generating links.

external_crates: HashMap<u32, ExternalCrate>

Maps crate_id of items to a crate name and html_root_url if it exists.

format_version: u32

A single version number to be used in the future when making backwards incompatible changes to the JSON output.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.