Enum sp_tracing::WasmValue
source · [−]pub enum WasmValue {
U8(u8),
I8(i8),
U32(u32),
I32(i32),
I64(i64),
U64(u64),
Bool(bool),
Str(Vec<u8>),
Formatted(Vec<u8>),
Encoded(Vec<u8>),
}
Expand description
A paramter value provided to the span/event
Variants
U8(u8)
I8(i8)
U32(u32)
I32(i32)
I64(i64)
U64(u64)
Bool(bool)
Str(Vec<u8>)
Formatted(Vec<u8>)
Debug or Display call, this is most-likely a print-able UTF8 String
Encoded(Vec<u8>)
SCALE CODEC encoded object – the name should allow the received to know how to decode this.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for WasmValue
impl UnwindSafe for WasmValue
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more