Struct lsp_types::SemanticTokensOptions
source · 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§
source§impl Clone for SemanticTokensOptions
impl Clone for SemanticTokensOptions
source§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 moresource§impl Debug for SemanticTokensOptions
impl Debug for SemanticTokensOptions
source§impl Default for SemanticTokensOptions
impl Default for SemanticTokensOptions
source§fn default() -> SemanticTokensOptions
fn default() -> SemanticTokensOptions
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SemanticTokensOptions
impl<'de> Deserialize<'de> for SemanticTokensOptions
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 From<SemanticTokensOptions> for SemanticTokensServerCapabilities
impl From<SemanticTokensOptions> for SemanticTokensServerCapabilities
source§fn from(from: SemanticTokensOptions) -> Self
fn from(from: SemanticTokensOptions) -> Self
Converts to this type from the input type.
source§impl PartialEq for SemanticTokensOptions
impl PartialEq for SemanticTokensOptions
source§impl Serialize for SemanticTokensOptions
impl Serialize for SemanticTokensOptions
impl Eq for SemanticTokensOptions
impl StructuralPartialEq for SemanticTokensOptions
Auto Trait Implementations§
impl Freeze for SemanticTokensOptions
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.