Struct ide::NavigationTarget
source · 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: TextRange
Range 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
§impl<T> Cast for T
impl<T> Cast for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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