Rename rustdoc_json_types::Item.source
to span
This commit is contained in:
parent
7dd475e498
commit
e190983bd3
@ -33,7 +33,7 @@ pub(super) fn convert_item(&self, item: clean::Item) -> Option<Item> {
|
||||
id: from_def_id(def_id),
|
||||
crate_id: def_id.krate.as_u32(),
|
||||
name: name.map(|sym| sym.to_string()),
|
||||
source: self.convert_span(span),
|
||||
span: self.convert_span(span),
|
||||
visibility: self.convert_visibility(visibility),
|
||||
docs: attrs.collapsed_doc_value(),
|
||||
links: attrs
|
||||
|
@ -109,7 +109,7 @@ fn get_trait_items(&mut self) -> Vec<(types::Id, types::Item)> {
|
||||
.map(Clone::clone),
|
||||
visibility: types::Visibility::Public,
|
||||
inner: types::ItemEnum::Trait(trait_item.clone().into()),
|
||||
source: None,
|
||||
span: None,
|
||||
docs: Default::default(),
|
||||
links: Default::default(),
|
||||
attrs: Default::default(),
|
||||
|
@ -64,7 +64,7 @@ pub struct Item {
|
||||
pub name: Option<String>,
|
||||
/// The source location of this item (absent if it came from a macro expansion or inline
|
||||
/// assembly).
|
||||
pub source: Option<Span>,
|
||||
pub span: Option<Span>,
|
||||
/// By default all documented items are public, but you can tell rustdoc to output private items
|
||||
/// so this field is needed to differentiate.
|
||||
pub visibility: Visibility,
|
||||
|
Loading…
Reference in New Issue
Block a user