Trait wast::parser::Peek [−][src]
pub trait Peek { fn peek(cursor: Cursor<'_>) -> bool; fn display() -> &'static str; fn peek2(cursor: Cursor<'_>) -> bool { ... } }
A trait for types which be used to “peek” to see if they’re the next token
in an input stream of Parser
.
Often when implementing Parse
you’ll need to query what the next token
in the stream is to figure out what to parse next. This Peek
trait
defines the set of types that can be tested whether they’re the next token
in the input stream.
Implementations of Peek
should only be present on types that consume
exactly one token (not zero, not more, exactly one). Types implementing
Peek
should also typically implement Parse
should also typically
implement Parse
.
See the documentation of Parser::peek
for example usage.
Required methods
fn peek(cursor: Cursor<'_>) -> bool
[src]
Tests to see whether this token is the first token within the Cursor
specified.
Returns true
if Parse
for this type is highly likely to succeed
failing no other error conditions happening (like an integer literal
being too big).
fn display() -> &'static str
[src]
Returns a human-readable name of this token to display when generating errors about this token missing.
Provided methods
fn peek2(cursor: Cursor<'_>) -> bool
[src]
The same as peek
, except it checks the token immediately following
the current token.
Implementations on Foreign Types
Loading content...Implementors
impl Peek for assert_exhaustion
[src]
impl Peek for assert_exhaustion
[src]impl Peek for assert_invalid
[src]
impl Peek for assert_invalid
[src]impl Peek for assert_malformed
[src]
impl Peek for assert_malformed
[src]impl Peek for assert_return
[src]
impl Peek for assert_return
[src]impl Peek for assert_return_arithmetic_nan
[src]
impl Peek for assert_return_arithmetic_nan
[src]impl Peek for assert_return_canonical_nan
[src]
impl Peek for assert_return_canonical_nan
[src]impl Peek for assert_return_func
[src]
impl Peek for assert_return_func
[src]impl Peek for assert_trap
[src]
impl Peek for assert_trap
[src]impl Peek for assert_unlinkable
[src]
impl Peek for assert_unlinkable
[src]impl Peek for instantiate
[src]
impl Peek for instantiate
[src]impl Peek for modulecode
[src]
impl Peek for modulecode
[src]impl Peek for nan_arithmetic
[src]
impl Peek for nan_arithmetic
[src]impl Peek for nan_canonical
[src]
impl Peek for nan_canonical
[src]impl Peek for InlineExport<'_>
[src]
impl Peek for InlineExport<'_>
[src]impl Peek for InlineImport<'_>
[src]
impl Peek for InlineImport<'_>
[src]impl<'a> Peek for FunctionType<'a>
[src]
impl<'a> Peek for FunctionType<'a>
[src]impl<'a> Peek for FunctionTypeNoNames<'a>
[src]
impl<'a> Peek for FunctionTypeNoNames<'a>
[src]impl<'a> Peek for InstanceType<'a>
[src]
impl<'a> Peek for InstanceType<'a>
[src]impl<'a> Peek for ModuleType<'a>
[src]
impl<'a> Peek for ModuleType<'a>
[src]