Enum sp_tracing::WasmValue[][src]

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>),
}

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

impl Clone for WasmValue[src]

impl Debug for WasmValue[src]

impl Decode for WasmValue[src]

impl Encode for WasmValue[src]

impl EncodeLike<WasmValue> for WasmValue[src]

impl From<&'_ &'_ str> for WasmValue[src]

impl From<&'_ i32> for WasmValue[src]

impl From<&'_ i8> for WasmValue[src]

impl From<&'_ str> for WasmValue[src]

impl From<&'_ u32> for WasmValue[src]

impl From<Arguments<'_>> for WasmValue[src]

impl From<bool> for WasmValue[src]

impl From<i32> for WasmValue[src]

impl From<i64> for WasmValue[src]

impl From<i8> for WasmValue[src]

impl From<u32> for WasmValue[src]

impl From<u64> for WasmValue[src]

impl From<u8> for WasmValue[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<S> Codec for S where
    S: Encode + Decode
[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: Encode + ToOwned
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

impl<T> From<T> for T[src]

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> KeyedVec for T where
    T: Codec
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.