Enum glsl_lang::parse::Token [−][src]
Variants
Identifier((&'i str, ParseContext))TypeName(&'i str)FloatConstant(f32)IntConstant(i32)UIntConstant(u32)BoolConstant(bool)DoubleConstant(f64)PpPathAbsolute(&'i str)PpPathRelative(&'i str)Implementations
impl<'i> Token<'i>[src]
pub fn is_pp(&self) -> bool[src]
Return true if this token is a preprocessor token
pub fn as_str(&self) -> &'i str[src]
Return this token’s inner text as a string slice
pub fn context(&self) -> ParseContext[src]
Return this token’s lexer context
Trait Implementations
impl<'i> Clone for Token<'i>[src]
impl<'i> Debug for Token<'i>[src]
impl<'i> Display for Token<'i>[src]
impl<'s> Logos<'s> for Token<'s>[src]
type Extras = ParseContext
Associated type Extras for the particular lexer. This can be set using
#[logos(extras = MyExtras)] and accessed inside callbacks. Read more
type Source = str
Source type this token can be lexed from. This will default to str,
unless one of the defined patterns explicitly uses non-unicode byte values
or byte slices, in which case that implementation will use [u8]. Read more
const ERROR: Self[src]
fn lex(lex: &mut Lexer<'s, Self>)[src]
pub fn lexer(source: &'source Self::Source) -> Lexer<'source, Self> where
Self::Extras: Default, [src]
Self::Extras: Default,
pub fn lexer_with_extras(
source: &'source Self::Source,
extras: Self::Extras
) -> Lexer<'source, Self>[src]
source: &'source Self::Source,
extras: Self::Extras
) -> Lexer<'source, Self>
impl<'i> PartialEq<Token<'i>> for Token<'i>[src]
impl<'i> StructuralPartialEq for Token<'i>[src]
impl Token for Token<'_>[src]
Auto Trait Implementations
impl<'i> !RefUnwindSafe for Token<'i>
impl<'i> !Send for Token<'i>
impl<'i> !Sync for Token<'i>
impl<'i> Unpin for Token<'i>
impl<'i> !UnwindSafe for Token<'i>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> IntoResult<T> for T[src]
type Err = Infallible
pub fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,