pub enum SchemeSyntaxKind {
Show 43 variants
Whitespace,
Newline,
Comment,
LineComment,
NumberLiteral,
StringLiteral,
CharacterLiteral,
BooleanLiteral,
Identifier,
Symbol,
Keyword,
Define,
Lambda,
If,
Cond,
Case,
Let,
LetStar,
Letrec,
Begin,
Do,
Quote,
Quasiquote,
Unquote,
UnquoteSplicing,
And,
Or,
Not,
Set,
LeftParen,
RightParen,
LeftBracket,
RightBracket,
LeftBrace,
RightBrace,
Dot,
Hash,
Quote_,
Quasiquote_,
Unquote_,
UnquoteSplicing_,
Error,
Eof,
}Variants§
Whitespace
Newline
Comment
LineComment
NumberLiteral
StringLiteral
CharacterLiteral
BooleanLiteral
Identifier
Symbol
Keyword
Define
Lambda
If
Cond
Case
Let
LetStar
Letrec
Begin
Do
Quote
Quasiquote
Unquote
UnquoteSplicing
And
Or
Not
Set
LeftParen
RightParen
LeftBracket
RightBracket
LeftBrace
RightBrace
Dot
Hash
Quote_
Quasiquote_
Unquote_
UnquoteSplicing_
Error
Eof
Trait Implementations§
Source§impl Clone for SchemeSyntaxKind
impl Clone for SchemeSyntaxKind
Source§fn clone(&self) -> SchemeSyntaxKind
fn clone(&self) -> SchemeSyntaxKind
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 SchemeSyntaxKind
impl Debug for SchemeSyntaxKind
Source§impl Hash for SchemeSyntaxKind
impl Hash for SchemeSyntaxKind
Source§impl PartialEq for SchemeSyntaxKind
impl PartialEq for SchemeSyntaxKind
Source§impl SyntaxKind for SchemeSyntaxKind
impl SyntaxKind for SchemeSyntaxKind
Source§fn is_trivia(&self) -> bool
fn is_trivia(&self) -> bool
Returns true if this kind represents trivia (whitespace, comments, etc.). Read more
Source§fn is_comment(&self) -> bool
fn is_comment(&self) -> bool
Returns true if this kind represents a comment. Read more
Source§fn is_whitespace(&self) -> bool
fn is_whitespace(&self) -> bool
Returns true if this kind represents whitespace.
Source§fn is_token_type(&self) -> bool
fn is_token_type(&self) -> bool
Returns true if this kind represents a token type. Read more
Source§fn is_element_type(&self) -> bool
fn is_element_type(&self) -> bool
Returns true if this kind represents an element type. Read more
impl Copy for SchemeSyntaxKind
impl Eq for SchemeSyntaxKind
impl StructuralPartialEq for SchemeSyntaxKind
Auto Trait Implementations§
impl Freeze for SchemeSyntaxKind
impl RefUnwindSafe for SchemeSyntaxKind
impl Send for SchemeSyntaxKind
impl Sync for SchemeSyntaxKind
impl Unpin for SchemeSyntaxKind
impl UnwindSafe for SchemeSyntaxKind
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