Struct lsp_types::SemanticTokenType
source · pub struct SemanticTokenType(/* private fields */);
Expand description
A set of predefined token types. This set is not fixed and clients can specify additional token types via the corresponding client capabilities.
@since 3.16.0
Implementations§
source§impl SemanticTokenType
impl SemanticTokenType
pub const NAMESPACE: SemanticTokenType = _
pub const TYPE: SemanticTokenType = _
pub const CLASS: SemanticTokenType = _
pub const ENUM: SemanticTokenType = _
pub const INTERFACE: SemanticTokenType = _
pub const STRUCT: SemanticTokenType = _
pub const TYPE_PARAMETER: SemanticTokenType = _
pub const PARAMETER: SemanticTokenType = _
pub const VARIABLE: SemanticTokenType = _
pub const PROPERTY: SemanticTokenType = _
pub const ENUM_MEMBER: SemanticTokenType = _
pub const EVENT: SemanticTokenType = _
pub const FUNCTION: SemanticTokenType = _
pub const METHOD: SemanticTokenType = _
pub const MACRO: SemanticTokenType = _
pub const KEYWORD: SemanticTokenType = _
pub const MODIFIER: SemanticTokenType = _
pub const COMMENT: SemanticTokenType = _
pub const STRING: SemanticTokenType = _
pub const NUMBER: SemanticTokenType = _
pub const REGEXP: SemanticTokenType = _
pub const OPERATOR: SemanticTokenType = _
sourcepub const DECORATOR: SemanticTokenType = _
pub const DECORATOR: SemanticTokenType = _
@since 3.17.0
pub const fn new(tag: &'static str) -> Self
pub fn as_str(&self) -> &str
Trait Implementations§
source§impl Clone for SemanticTokenType
impl Clone for SemanticTokenType
source§fn clone(&self) -> SemanticTokenType
fn clone(&self) -> SemanticTokenType
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 SemanticTokenType
impl Debug for SemanticTokenType
source§impl<'de> Deserialize<'de> for SemanticTokenType
impl<'de> Deserialize<'de> for SemanticTokenType
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<&'static str> for SemanticTokenType
impl From<&'static str> for SemanticTokenType
source§impl From<String> for SemanticTokenType
impl From<String> for SemanticTokenType
source§impl Hash for SemanticTokenType
impl Hash for SemanticTokenType
source§impl PartialEq for SemanticTokenType
impl PartialEq for SemanticTokenType
source§impl PartialOrd for SemanticTokenType
impl PartialOrd for SemanticTokenType
source§impl Serialize for SemanticTokenType
impl Serialize for SemanticTokenType
impl Eq for SemanticTokenType
impl StructuralPartialEq for SemanticTokenType
Auto Trait Implementations§
impl Freeze for SemanticTokenType
impl RefUnwindSafe for SemanticTokenType
impl Send for SemanticTokenType
impl Sync for SemanticTokenType
impl Unpin for SemanticTokenType
impl UnwindSafe for SemanticTokenType
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.