pub struct CssLanguage;Trait Implementations§
Source§impl Clone for CssLanguage
impl Clone for CssLanguage
Source§fn clone(&self) -> CssLanguage
fn clone(&self) -> CssLanguage
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 CssLanguage
impl Debug for CssLanguage
Source§impl Hash for CssLanguage
impl Hash for CssLanguage
Source§impl Language for CssLanguage
impl Language for CssLanguage
Source§type SyntaxKind = CssSyntaxKind
type SyntaxKind = CssSyntaxKind
The kind kind type used to represent different kind and node types in the language. Read more
Source§impl Lexer<CssLanguage> for CssLexer
impl Lexer<CssLanguage> for CssLexer
Source§fn lex(&self, source: impl Source) -> LexOutput<CssLanguage>
fn lex(&self, source: impl Source) -> LexOutput<CssLanguage>
Tokenizes the given source text into a sequence of tokens. Read more
Source§fn lex_incremental(
&self,
source: impl Source,
_changed: usize,
_cache: IncrementalCache<'_, CssLanguage>,
) -> LexOutput<CssLanguage>
fn lex_incremental( &self, source: impl Source, _changed: usize, _cache: IncrementalCache<'_, CssLanguage>, ) -> LexOutput<CssLanguage>
Tokenizes source text using an existing cache for incremental parsing. Read more
Source§impl Ord for CssLanguage
impl Ord for CssLanguage
Source§fn cmp(&self, other: &CssLanguage) -> Ordering
fn cmp(&self, other: &CssLanguage) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CssLanguage
impl PartialEq for CssLanguage
Source§impl PartialOrd for CssLanguage
impl PartialOrd for CssLanguage
impl Copy for CssLanguage
impl Eq for CssLanguage
impl StructuralPartialEq for CssLanguage
Auto Trait Implementations§
impl Freeze for CssLanguage
impl RefUnwindSafe for CssLanguage
impl Send for CssLanguage
impl Sync for CssLanguage
impl Unpin for CssLanguage
impl UnwindSafe for CssLanguage
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