pub enum SemanticTokensDeltaResponse {
SemanticTokens(SemanticTokens),
SemanticTokensDelta(SemanticTokensDelta),
}Variants§
SemanticTokens(SemanticTokens)
SemanticTokensDelta(SemanticTokensDelta)
Trait Implementations§
Source§impl Clone for SemanticTokensDeltaResponse
impl Clone for SemanticTokensDeltaResponse
Source§fn clone(&self) -> SemanticTokensDeltaResponse
fn clone(&self) -> SemanticTokensDeltaResponse
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 SemanticTokensDeltaResponse
impl Debug for SemanticTokensDeltaResponse
Source§impl<'de> Deserialize<'de> for SemanticTokensDeltaResponse
impl<'de> Deserialize<'de> for SemanticTokensDeltaResponse
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 From<SemanticTokensDelta> for SemanticTokensDeltaResponse
impl From<SemanticTokensDelta> for SemanticTokensDeltaResponse
Source§fn from(v: SemanticTokensDelta) -> Self
fn from(v: SemanticTokensDelta) -> Self
Converts to this type from the input type.
Source§impl Hash for SemanticTokensDeltaResponse
impl Hash for SemanticTokensDeltaResponse
Source§impl PartialEq for SemanticTokensDeltaResponse
impl PartialEq for SemanticTokensDeltaResponse
Source§fn eq(&self, other: &SemanticTokensDeltaResponse) -> bool
fn eq(&self, other: &SemanticTokensDeltaResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SemanticTokensDeltaResponse
impl StructuralPartialEq for SemanticTokensDeltaResponse
Auto Trait Implementations§
impl Freeze for SemanticTokensDeltaResponse
impl RefUnwindSafe for SemanticTokensDeltaResponse
impl Send for SemanticTokensDeltaResponse
impl Sync for SemanticTokensDeltaResponse
impl Unpin for SemanticTokensDeltaResponse
impl UnsafeUnpin for SemanticTokensDeltaResponse
impl UnwindSafe for SemanticTokensDeltaResponse
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