pub struct SemanticTokensOptions {
pub legend: SemanticTokensLegend,
pub range: Option<bool>,
pub full: Option<Or2<bool, SemanticTokensOptionsFull>>,
pub work_done_progress_options: WorkDoneProgressOptions,
}Expand description
@since 3.16.0
Fields§
§legend: SemanticTokensLegendThe legend used by the server
range: Option<bool>Server supports providing semantic tokens for a specific range of a document.
full: Option<Or2<bool, SemanticTokensOptionsFull>>Server supports providing semantic tokens for a full document.
work_done_progress_options: WorkDoneProgressOptionsTrait Implementations§
Source§impl Clone for SemanticTokensOptions
impl Clone for SemanticTokensOptions
Source§fn clone(&self) -> SemanticTokensOptions
fn clone(&self) -> SemanticTokensOptions
Returns a duplicate 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
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