[][src]Struct rustdoc_types::Crate

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

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

impl Clone for Crate[src]

impl Debug for Crate[src]

impl<'de> Deserialize<'de> for Crate[src]

impl PartialEq<Crate> for Crate[src]

impl Serialize for Crate[src]

impl StructuralPartialEq for Crate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.