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