pub enum WastArgCore<'a> {
I32(i32),
I64(i64),
F32(Float32),
F64(Float64),
V128(V128Const),
RefNull(HeapType<'a>),
RefExtern(u32),
}
Expand description
Expression that can be used inside of invoke expressions for core wasm
functions.
Formats the value using the given formatter.
Read more
Attempts to parse
Self from
parser, returning an error if it could
not be parsed.
Read more
Tests to see whether this token is the first token within the
Cursor
specified.
Read more
Returns a human-readable name of this token to display when generating
errors about this token missing.
The same as peek, except it checks the token immediately following
the current token.
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self).
That is, this conversion is whatever the implementation of
From<T> for U chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.