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: Self
pub const TYPE: Self
pub const CLASS: Self
pub const ENUM: Self
pub const INTERFACE: Self
pub const STRUCT: Self
pub const TYPE_PARAMETER: Self
pub const PARAMETER: Self
pub const VARIABLE: Self
pub const PROPERTY: Self
pub const ENUM_MEMBER: Self
pub const EVENT: Self
pub const FUNCTION: Self
pub const METHOD: Self
pub const MACRO: Self
pub const KEYWORD: Self
pub const MODIFIER: Self
pub const COMMENT: Self
pub const STRING: Self
pub const NUMBER: Self
pub const REGEXP: Self
pub const OPERATOR: Self
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 duplicate 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