Struct lsp_types::SemanticTokens
source · pub struct SemanticTokens {
pub result_id: Option<String>,
pub data: Vec<SemanticToken>,
}
Expand description
@since 3.16.0
Fields§
§result_id: Option<String>
An optional result id. If provided and clients support delta updating the client will include the result id in the next semantic token request. A server can then instead of computing all semantic tokens again simply send a delta.
data: Vec<SemanticToken>
The actual tokens. For a detailed description about how the data is structured please see https://github.com/microsoft/vscode-extension-samples/blob/5ae1f7787122812dcc84e37427ca90af5ee09f14/semantic-tokens-sample/vscode.proposed.d.ts#L71
Trait Implementations§
source§impl Clone for SemanticTokens
impl Clone for SemanticTokens
source§fn clone(&self) -> SemanticTokens
fn clone(&self) -> SemanticTokens
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 SemanticTokens
impl Debug for SemanticTokens
source§impl Default for SemanticTokens
impl Default for SemanticTokens
source§fn default() -> SemanticTokens
fn default() -> SemanticTokens
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SemanticTokens
impl<'de> Deserialize<'de> for SemanticTokens
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<SemanticTokens> for SemanticTokensFullDeltaResult
impl From<SemanticTokens> for SemanticTokensFullDeltaResult
source§fn from(from: SemanticTokens) -> Self
fn from(from: SemanticTokens) -> Self
Converts to this type from the input type.
source§impl From<SemanticTokens> for SemanticTokensRangeResult
impl From<SemanticTokens> for SemanticTokensRangeResult
source§fn from(tokens: SemanticTokens) -> Self
fn from(tokens: SemanticTokens) -> Self
Converts to this type from the input type.
source§impl From<SemanticTokens> for SemanticTokensResult
impl From<SemanticTokens> for SemanticTokensResult
source§fn from(from: SemanticTokens) -> Self
fn from(from: SemanticTokens) -> Self
Converts to this type from the input type.
source§impl PartialEq for SemanticTokens
impl PartialEq for SemanticTokens
source§impl Serialize for SemanticTokens
impl Serialize for SemanticTokens
impl Eq for SemanticTokens
impl StructuralPartialEq for SemanticTokens
Auto Trait Implementations§
impl Freeze for SemanticTokens
impl RefUnwindSafe for SemanticTokens
impl Send for SemanticTokens
impl Sync for SemanticTokens
impl Unpin for SemanticTokens
impl UnwindSafe for SemanticTokens
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.