Struct lsp_types::LocationLink
source · [−]pub struct LocationLink {
pub origin_selection_range: Option<Range>,
pub target_uri: Url,
pub target_range: Range,
pub target_selection_range: Range,
}Expand description
Represents a link between a source and a target location.
Fields
origin_selection_range: Option<Range>Span of the origin of this link.
Used as the underlined span for mouse interaction. Defaults to the word range at the mouse position.
target_uri: UrlThe target resource identifier of this link.
target_range: RangeThe full target range of this link.
target_selection_range: RangeThe span of this link.
Trait Implementations
sourceimpl Clone for LocationLink
impl Clone for LocationLink
sourcefn clone(&self) -> LocationLink
fn clone(&self) -> LocationLink
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for LocationLink
impl Debug for LocationLink
sourceimpl<'de> Deserialize<'de> for LocationLink
impl<'de> Deserialize<'de> for LocationLink
sourcefn 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
sourceimpl PartialEq<LocationLink> for LocationLink
impl PartialEq<LocationLink> for LocationLink
sourcefn eq(&self, other: &LocationLink) -> bool
fn eq(&self, other: &LocationLink) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl Serialize for LocationLink
impl Serialize for LocationLink
impl Eq for LocationLink
impl StructuralEq for LocationLink
impl StructuralPartialEq for LocationLink
Auto Trait Implementations
impl RefUnwindSafe for LocationLink
impl Send for LocationLink
impl Sync for LocationLink
impl Unpin for LocationLink
impl UnwindSafe for LocationLink
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more