Struct lsp_types::SemanticToken
source · pub struct SemanticToken {
pub delta_line: u32,
pub delta_start: u32,
pub length: u32,
pub token_type: u32,
pub token_modifiers_bitset: u32,
}
Expand description
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
Fields§
§delta_line: u32
§delta_start: u32
§length: u32
§token_type: u32
§token_modifiers_bitset: u32
Trait Implementations§
source§impl Clone for SemanticToken
impl Clone for SemanticToken
source§fn clone(&self) -> SemanticToken
fn clone(&self) -> SemanticToken
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 SemanticToken
impl Debug for SemanticToken
source§impl Default for SemanticToken
impl Default for SemanticToken
source§fn default() -> SemanticToken
fn default() -> SemanticToken
Returns the “default value” for a type. Read more
source§impl PartialEq for SemanticToken
impl PartialEq for SemanticToken
source§fn eq(&self, other: &SemanticToken) -> bool
fn eq(&self, other: &SemanticToken) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SemanticToken
impl Eq for SemanticToken
impl StructuralEq for SemanticToken
impl StructuralPartialEq for SemanticToken
Auto Trait Implementations§
impl RefUnwindSafe for SemanticToken
impl Send for SemanticToken
impl Sync for SemanticToken
impl Unpin for SemanticToken
impl UnwindSafe for SemanticToken
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<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,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.