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