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