Enum wasm_encoder::CoreDumpValue
source · pub enum CoreDumpValue {
Missing,
I32(i32),
I64(i64),
F32(f32),
F64(f64),
}
Expand description
Local and stack values are encoded using one byte for the type (similar to Wasm’s Number Types) followed by bytes representing the actual value See the tool-conventions repo for more details.
Variants§
Missing
a missing value (usually missing because it was optimized out)
I32(i32)
An i32 value
I64(i64)
An i64 value
F32(f32)
An f32 value
F64(f64)
An f64 value
Trait Implementations§
source§impl Clone for CoreDumpValue
impl Clone for CoreDumpValue
source§fn clone(&self) -> CoreDumpValue
fn clone(&self) -> CoreDumpValue
Returns a copy 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 CoreDumpValue
impl Debug for CoreDumpValue
Auto Trait Implementations§
impl RefUnwindSafe for CoreDumpValue
impl Send for CoreDumpValue
impl Sync for CoreDumpValue
impl Unpin for CoreDumpValue
impl UnwindSafe for CoreDumpValue
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