Struct lsp_types::selection_range::SelectionRange
source · pub struct SelectionRange {
pub range: Range,
pub parent: Option<Box<SelectionRange>>,
}
Expand description
Represents a selection range.
Fields§
§range: Range
Range of the selection.
parent: Option<Box<SelectionRange>>
The parent selection range containing this range.
Trait Implementations§
source§impl Clone for SelectionRange
impl Clone for SelectionRange
source§fn clone(&self) -> SelectionRange
fn clone(&self) -> SelectionRange
Returns a copy 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 SelectionRange
impl Debug for SelectionRange
source§impl Default for SelectionRange
impl Default for SelectionRange
source§fn default() -> SelectionRange
fn default() -> SelectionRange
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SelectionRange
impl<'de> Deserialize<'de> for SelectionRange
source§fn 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
source§impl PartialEq for SelectionRange
impl PartialEq for SelectionRange
source§fn eq(&self, other: &SelectionRange) -> bool
fn eq(&self, other: &SelectionRange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SelectionRange
impl Serialize for SelectionRange
impl Eq for SelectionRange
impl StructuralEq for SelectionRange
impl StructuralPartialEq for SelectionRange
Auto Trait Implementations§
impl RefUnwindSafe for SelectionRange
impl Send for SelectionRange
impl Sync for SelectionRange
impl Unpin for SelectionRange
impl UnwindSafe for SelectionRange
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.