pub struct SuggestLocation {
pub symbol_id: SymbolId,
pub symbol_path: SymbolPath,
pub file: String,
}Expand description
Location information for a suggestion
Uses SymbolId/SymbolPath for precise symbol reference.
The file field is derived from the symbol’s span when available.
Fields§
§symbol_id: SymbolIdSymbol ID for precise reference
symbol_path: SymbolPathSymbol path (e.g., “test_crate::module::SymbolName”)
file: StringFile path (derived from symbol span, for display)
Implementations§
Source§impl SuggestLocation
impl SuggestLocation
Sourcepub fn new(
symbol_id: SymbolId,
symbol_path: SymbolPath,
file: impl Into<String>,
) -> SuggestLocation
pub fn new( symbol_id: SymbolId, symbol_path: SymbolPath, file: impl Into<String>, ) -> SuggestLocation
Create a new SuggestLocation from symbol information
Sourcepub fn from_context(
ctx: &AnalysisContext,
symbol_id: SymbolId,
) -> Option<SuggestLocation>
pub fn from_context( ctx: &AnalysisContext, symbol_id: SymbolId, ) -> Option<SuggestLocation>
Create from AnalysisContext by looking up the symbol
Sourcepub fn symbol_name(&self) -> &str
pub fn symbol_name(&self) -> &str
Get the symbol name (last component of path)
Trait Implementations§
Source§impl Clone for SuggestLocation
impl Clone for SuggestLocation
Source§fn clone(&self) -> SuggestLocation
fn clone(&self) -> SuggestLocation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SuggestLocation
impl Debug for SuggestLocation
Source§impl<'de> Deserialize<'de> for SuggestLocation
impl<'de> Deserialize<'de> for SuggestLocation
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SuggestLocation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SuggestLocation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for SuggestLocation
impl Display for SuggestLocation
Source§impl PartialEq for SuggestLocation
impl PartialEq for SuggestLocation
Source§fn eq(&self, other: &SuggestLocation) -> bool
fn eq(&self, other: &SuggestLocation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SuggestLocation
impl Serialize for SuggestLocation
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
impl Eq for SuggestLocation
impl StructuralPartialEq for SuggestLocation
Auto Trait Implementations§
impl Freeze for SuggestLocation
impl RefUnwindSafe for SuggestLocation
impl Send for SuggestLocation
impl Sync for SuggestLocation
impl Unpin for SuggestLocation
impl UnsafeUnpin for SuggestLocation
impl UnwindSafe for SuggestLocation
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more