Struct lsp_types::CallHierarchyItem
source · 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 incoming calls or outgoing calls requests.
Trait Implementations§
source§impl Clone for CallHierarchyItem
impl Clone for CallHierarchyItem
source§fn clone(&self) -> CallHierarchyItem
fn clone(&self) -> CallHierarchyItem
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CallHierarchyItem
impl Debug for CallHierarchyItem
source§impl<'de> Deserialize<'de> for CallHierarchyItem
impl<'de> Deserialize<'de> for CallHierarchyItem
source§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
source§impl PartialEq for CallHierarchyItem
impl PartialEq for CallHierarchyItem
source§impl Serialize for CallHierarchyItem
impl Serialize for CallHierarchyItem
impl StructuralPartialEq for CallHierarchyItem
Auto Trait Implementations§
impl Freeze for CallHierarchyItem
impl RefUnwindSafe for CallHierarchyItem
impl Send for CallHierarchyItem
impl Sync for CallHierarchyItem
impl Unpin for CallHierarchyItem
impl UnwindSafe for CallHierarchyItem
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)