Struct lsp_types::CallHierarchyItem [−][src]
pub struct CallHierarchyItem {
pub name: String,
pub kind: SymbolKind,
pub tags: Option<Vec<SymbolTag>>,
pub detail: Option<String>,
pub uri: Url,
pub range: Range,
pub selection_range: Range,
pub data: Option<Value>,
}
Fields
name: String
The name of this item.
kind: SymbolKind
The kind of this item.
Tags for this item.
detail: Option<String>
More detail for this item, e.g. the signature of a function.
uri: Url
The resource identifier of this item.
range: Range
The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code.
selection_range: Range
The range that should be selected and revealed when this symbol is being picked, e.g. the name of a function.
Must be contained by the range
.
data: Option<Value>
A data entry field that is preserved between a call hierarchy prepare and incloming calls or outgoing calls requests.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
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 !=
.
Auto Trait Implementations
impl RefUnwindSafe for CallHierarchyItem
impl Send for CallHierarchyItem
impl Sync for CallHierarchyItem
impl Unpin for CallHierarchyItem
impl UnwindSafe for CallHierarchyItem
Blanket Implementations
Mutably borrows from an owned value. Read more