Enum apollo_parser::TokenKind
source · [−]#[repr(u16)]
pub enum TokenKind {
Show 22 variants
Whitespace,
Comment,
Bang,
Dollar,
Amp,
Spread,
Comma,
Colon,
Eq,
At,
LParen,
RParen,
LBracket,
RBracket,
LCurly,
RCurly,
Pipe,
Eof,
Name,
StringValue,
Int,
Float,
}
Expand description
Tokens generated by the lexer.
TokenKinds are Lexical Tokens outlined in the GraphQL specification.
Punctuator
! $ & … , : = @ ( ) [ ] { } |
Name IntValue FloatValue StringValue
TokenKinds can be accessed by a convenience macro, T!
. For example to
access the Bang TokenKind, you may match with TokenKind::Bang
, or use the
macro T![!]
.
Variants
Whitespace
Comment
Bang
Dollar
Amp
Spread
Comma
Colon
Eq
At
LParen
RParen
LBracket
RBracket
LCurly
RCurly
Pipe
Eof
Name
StringValue
Int
Float
Trait Implementations
impl Copy for TokenKind
impl StructuralPartialEq for TokenKind
Auto Trait Implementations
impl RefUnwindSafe for TokenKind
impl Send for TokenKind
impl Sync for TokenKind
impl Unpin for TokenKind
impl UnwindSafe for TokenKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more