pub struct DocumentHighlight {
pub range: Range,
pub kind: Option<DocumentHighlightKind>,
}Expand description
A document highlight is a range inside a text document which deserves special attention. Usually a document highlight is visualized by changing the background color of its range.
Fields§
§range: RangeThe range this highlight applies to.
kind: Option<DocumentHighlightKind>The highlight kind, default is text.
Implementations§
Source§impl DocumentHighlight
impl DocumentHighlight
pub const fn new(range: Range, kind: Option<DocumentHighlightKind>) -> Self
Trait Implementations§
Source§impl Clone for DocumentHighlight
impl Clone for DocumentHighlight
Source§fn clone(&self) -> DocumentHighlight
fn clone(&self) -> DocumentHighlight
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DocumentHighlight
impl Debug for DocumentHighlight
Source§impl Default for DocumentHighlight
impl Default for DocumentHighlight
Source§fn default() -> DocumentHighlight
fn default() -> DocumentHighlight
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DocumentHighlight
impl<'de> Deserialize<'de> for DocumentHighlight
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 Hash for DocumentHighlight
impl Hash for DocumentHighlight
Source§impl PartialEq for DocumentHighlight
impl PartialEq for DocumentHighlight
Source§fn eq(&self, other: &DocumentHighlight) -> bool
fn eq(&self, other: &DocumentHighlight) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DocumentHighlight
impl Serialize for DocumentHighlight
impl Copy for DocumentHighlight
impl Eq for DocumentHighlight
impl StructuralPartialEq for DocumentHighlight
Auto Trait Implementations§
impl Freeze for DocumentHighlight
impl RefUnwindSafe for DocumentHighlight
impl Send for DocumentHighlight
impl Sync for DocumentHighlight
impl Unpin for DocumentHighlight
impl UnsafeUnpin for DocumentHighlight
impl UnwindSafe for DocumentHighlight
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