pub struct NavigationTarget {
pub file_id: FileId,
pub full_range: TextRange,
pub focus_range: Option<TextRange>,
pub name: SmolStr,
pub kind: Option<SymbolKind>,
pub container_name: Option<SmolStr>,
pub description: Option<String>,
pub docs: Option<Documentation>,
pub alias: Option<SmolStr>,
}Expand description
NavigationTarget represents an element in the editor’s UI which you can
click on to navigate to a particular piece of code.
Typically, a NavigationTarget corresponds to some element in the source
code, like a function or a struct, but this is not strictly required.
Fields§
§file_id: FileId§full_range: TextRangeRange which encompasses the whole element.
Should include body, doc comments, attributes, etc.
Clients should use this range to answer “is the cursor inside the element?” question.
focus_range: Option<TextRange>A “most interesting” range within the full_range.
Typically, full_range is the whole syntax node, including doc
comments, and focus_range is the range of the identifier.
Clients should place the cursor on this range when navigating to this target.
This range must be contained within Self::full_range.
name: SmolStr§kind: Option<SymbolKind>§container_name: Option<SmolStr>§description: Option<String>§docs: Option<Documentation>§alias: Option<SmolStr>In addition to a name field, a NavigationTarget may also be aliased
In such cases we want a NavigationTarget to be accessible by its alias
Implementations§
pub fn focus_or_full_range(&self) -> TextRange
Trait Implementations§
Source§fn clone(&self) -> NavigationTarget
fn clone(&self) -> NavigationTarget
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
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
Source§impl<T> Cast for T
impl<T> Cast for T
Source§fn cast<U>(self, interner: <U as HasInterner>::Interner) -> Uwhere
Self: CastTo<U>,
U: HasInterner,
fn cast<U>(self, interner: <U as HasInterner>::Interner) -> Uwhere
Self: CastTo<U>,
U: HasInterner,
U using CastTo.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
key and return true if they are equal.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>
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>
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 more