pub struct SymbolInformation {
pub name: String,
pub kind: SymbolKind,
pub deprecated: Option<bool>,
pub location: Location,
pub container_name: Option<String>,
}
Expand description
Represents information about programming constructs like variables, classes, interfaces etc.
Fields§
§name: String
The name of this symbol.
kind: SymbolKind
The kind of this symbol.
deprecated: Option<bool>
Indicates if this symbol is deprecated.
location: Location
The location of this symbol.
container_name: Option<String>
The name of the symbol containing this symbol.
Trait Implementations§
Source§impl Debug for SymbolInformation
impl Debug for SymbolInformation
Source§impl<'de> Deserialize<'de> for SymbolInformation
impl<'de> Deserialize<'de> for SymbolInformation
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 SymbolInformation
impl PartialEq for SymbolInformation
Source§impl Serialize for SymbolInformation
impl Serialize for SymbolInformation
impl Eq for SymbolInformation
impl StructuralPartialEq for SymbolInformation
Auto Trait Implementations§
impl Freeze for SymbolInformation
impl RefUnwindSafe for SymbolInformation
impl Send for SymbolInformation
impl Sync for SymbolInformation
impl Unpin for SymbolInformation
impl UnwindSafe for SymbolInformation
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