pub enum SemanticTokensRangeResult {
Tokens(SemanticTokens),
Partial(SemanticTokensPartialResult),
}
Variants§
Tokens(SemanticTokens)
Partial(SemanticTokensPartialResult)
Trait Implementations§
source§impl Clone for SemanticTokensRangeResult
impl Clone for SemanticTokensRangeResult
source§fn clone(&self) -> SemanticTokensRangeResult
fn clone(&self) -> SemanticTokensRangeResult
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 SemanticTokensRangeResult
impl Debug for SemanticTokensRangeResult
source§impl<'de> Deserialize<'de> for SemanticTokensRangeResult
impl<'de> Deserialize<'de> for SemanticTokensRangeResult
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 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<SemanticTokensPartialResult> for SemanticTokensRangeResult
impl From<SemanticTokensPartialResult> for SemanticTokensRangeResult
source§fn from(partial: SemanticTokensPartialResult) -> Self
fn from(partial: SemanticTokensPartialResult) -> Self
Converts to this type from the input type.
source§impl PartialEq for SemanticTokensRangeResult
impl PartialEq for SemanticTokensRangeResult
source§fn eq(&self, other: &SemanticTokensRangeResult) -> bool
fn eq(&self, other: &SemanticTokensRangeResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for SemanticTokensRangeResult
impl StructuralEq for SemanticTokensRangeResult
impl StructuralPartialEq for SemanticTokensRangeResult
Auto Trait Implementations§
impl RefUnwindSafe for SemanticTokensRangeResult
impl Send for SemanticTokensRangeResult
impl Sync for SemanticTokensRangeResult
impl Unpin for SemanticTokensRangeResult
impl UnwindSafe for SemanticTokensRangeResult
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.