Struct lsp_types::DocumentHighlightKind
source · pub struct DocumentHighlightKind(/* private fields */);
Expand description
A document highlight kind.
Implementations§
source§impl DocumentHighlightKind
impl DocumentHighlightKind
sourcepub const TEXT: DocumentHighlightKind = _
pub const TEXT: DocumentHighlightKind = _
A textual occurrence.
sourcepub const READ: DocumentHighlightKind = _
pub const READ: DocumentHighlightKind = _
Read-access of a symbol, like reading a variable.
sourcepub const WRITE: DocumentHighlightKind = _
pub const WRITE: DocumentHighlightKind = _
Write-access of a symbol, like writing to a variable.
Trait Implementations§
source§impl Clone for DocumentHighlightKind
impl Clone for DocumentHighlightKind
source§fn clone(&self) -> DocumentHighlightKind
fn clone(&self) -> DocumentHighlightKind
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 DocumentHighlightKind
impl Debug for DocumentHighlightKind
source§impl<'de> Deserialize<'de> for DocumentHighlightKind
impl<'de> Deserialize<'de> for DocumentHighlightKind
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 DocumentHighlightKind
impl PartialEq for DocumentHighlightKind
source§fn eq(&self, other: &DocumentHighlightKind) -> bool
fn eq(&self, other: &DocumentHighlightKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DocumentHighlightKind
impl Serialize for DocumentHighlightKind
source§impl TryFrom<&str> for DocumentHighlightKind
impl TryFrom<&str> for DocumentHighlightKind
impl Copy for DocumentHighlightKind
impl Eq for DocumentHighlightKind
impl StructuralPartialEq for DocumentHighlightKind
Auto Trait Implementations§
impl Freeze for DocumentHighlightKind
impl RefUnwindSafe for DocumentHighlightKind
impl Send for DocumentHighlightKind
impl Sync for DocumentHighlightKind
impl Unpin for DocumentHighlightKind
impl UnwindSafe for DocumentHighlightKind
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