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.
Implementations§
Trait Implementations§
Source§impl Clone for SemanticTokens
impl Clone for SemanticTokens
Source§fn clone(&self) -> SemanticTokens
fn clone(&self) -> SemanticTokens
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SemanticTokensDeltaResponse
impl From<SemanticTokens> for SemanticTokensDeltaResponse
Source§fn from(v: SemanticTokens) -> Self
fn from(v: SemanticTokens) -> Self
Converts to this type from the input type.
Source§impl Hash for SemanticTokens
impl Hash for SemanticTokens
Source§impl PartialEq for SemanticTokens
impl PartialEq for SemanticTokens
Source§fn eq(&self, other: &SemanticTokens) -> bool
fn eq(&self, other: &SemanticTokens) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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