pub struct SymbolInformation {
pub name: String,
pub role: UniversalElementRole,
pub uri: Arc<str>,
pub range: Range<usize>,
pub container_name: Option<String>,
}Expand description
Represents information about a symbol (e.g., function, variable, class).
Fields§
§name: StringThe name of the symbol.
role: UniversalElementRoleThe universal role of the symbol.
uri: Arc<str>The URI of the resource.
range: Range<usize>The byte range within the resource.
container_name: Option<String>The name of the container this symbol is in.
Trait Implementations§
Source§impl Clone for SymbolInformation
impl Clone for SymbolInformation
Source§fn clone(&self) -> SymbolInformation
fn clone(&self) -> SymbolInformation
Returns a duplicate 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 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<SymbolInformation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SymbolInformation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for SymbolInformation
impl Serialize for SymbolInformation
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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