[−][src]Struct rustdoc_types::Crate
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: IdThe 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: boolWhether 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: u32A 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]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl PartialEq<Crate> for Crate[src]
impl Serialize for Crate[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for Crate[src]
Auto Trait Implementations
impl RefUnwindSafe for Crate[src]
impl Send for Crate[src]
impl Sync for Crate[src]
impl Unpin for Crate[src]
impl UnwindSafe for Crate[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,