Struct lsp2::SemanticTokensOptions
pub struct SemanticTokensOptions {
pub work_done_progress_options: WorkDoneProgressOptions,
pub legend: SemanticTokensLegend,
pub range: Option<bool>,
pub full: Option<SemanticTokensFullOptions>,
}
Expand description
@since 3.16.0
Fields§
§work_done_progress_options: WorkDoneProgressOptions
§legend: SemanticTokensLegend
The legend used by the server
range: Option<bool>
Server supports providing semantic tokens for a specific range of a document.
full: Option<SemanticTokensFullOptions>
Server supports providing semantic tokens for a full document.
Trait Implementations§
§impl Clone for SemanticTokensOptions
impl Clone for SemanticTokensOptions
§fn clone(&self) -> SemanticTokensOptions
fn clone(&self) -> SemanticTokensOptions
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 more§impl Debug for SemanticTokensOptions
impl Debug for SemanticTokensOptions
§impl Default for SemanticTokensOptions
impl Default for SemanticTokensOptions
§fn default() -> SemanticTokensOptions
fn default() -> SemanticTokensOptions
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for SemanticTokensOptions
impl<'de> Deserialize<'de> for SemanticTokensOptions
§fn deserialize<__D>(
__deserializer: __D
) -> Result<SemanticTokensOptions, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<SemanticTokensOptions, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl From<SemanticTokensOptions> for SemanticTokensServerCapabilities
impl From<SemanticTokensOptions> for SemanticTokensServerCapabilities
§fn from(from: SemanticTokensOptions) -> SemanticTokensServerCapabilities
fn from(from: SemanticTokensOptions) -> SemanticTokensServerCapabilities
Converts to this type from the input type.
§impl PartialEq<SemanticTokensOptions> for SemanticTokensOptions
impl PartialEq<SemanticTokensOptions> for SemanticTokensOptions
§fn eq(&self, other: &SemanticTokensOptions) -> bool
fn eq(&self, other: &SemanticTokensOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for SemanticTokensOptions
impl Serialize for SemanticTokensOptions
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for SemanticTokensOptions
impl StructuralEq for SemanticTokensOptions
impl StructuralPartialEq for SemanticTokensOptions
Auto Trait Implementations§
impl RefUnwindSafe for SemanticTokensOptions
impl Send for SemanticTokensOptions
impl Sync for SemanticTokensOptions
impl Unpin for SemanticTokensOptions
impl UnwindSafe for SemanticTokensOptions
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
§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.