Enum sp_wasm_interface::Value [−][src]
Values supported by Substrate on the boundary between host/Wasm.
Variants
I32(i32)A 32-bit integer.
I64(i64)A 64-bit integer.
F32(u32)A 32-bit floating-point number stored as raw bit pattern.
You can materialize this value using f32::from_bits.
F64(u64)A 64-bit floating-point number stored as raw bit pattern.
You can materialize this value using f64::from_bits.
Implementations
impl Value[src]
pub fn value_type(&self) -> ValueType[src]
Returns the type of this value.
pub fn as_i32(&self) -> Option<i32>[src]
Return Self as i32.
Trait Implementations
impl Clone for Value[src]
impl Copy for Value[src]
impl Debug for Value[src]
impl Decode for Value[src]
fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>[src]
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
impl Encode for Value[src]
fn encode_to<__CodecOutputEdqy: Output>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
pub fn size_hint(&self) -> usize[src]
pub fn encode(&self) -> Vec<u8, Global>[src]
pub fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R, [src]
F: FnOnce(&[u8]) -> R,
impl EncodeLike<Value> for Value[src]
impl From<RuntimeValue> for Value[src]
fn from(value: RuntimeValue) -> Self[src]
impl From<Value> for ReturnValue[src]
fn from(v: Value) -> ReturnValue[src]
impl PartialEq<Value> for Value[src]
impl StructuralPartialEq for Value[src]
Auto Trait Implementations
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<S> Codec for S where
S: Encode + Decode, [src]
S: Encode + Decode,
impl<T> DecodeAll for T where
T: Decode, [src]
T: Decode,
impl<T> DecodeLimit for T where
T: Decode, [src]
T: Decode,
pub fn decode_all_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>[src]
pub fn decode_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>[src]
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode, [src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode, [src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode, [src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode, [src]
T: Encode,
impl<T> EncodeLike<Box<T, Global>> for T where
T: Encode, [src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: Encode + ToOwned, [src]
T: Encode + ToOwned,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode, [src]
T: Encode,
impl<T> From<T> for T[src]
impl<S> FullCodec for S where
S: Decode + FullEncode, [src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>, [src]
S: Encode + EncodeLike<S>,
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> KeyedVec for T where
T: Codec, [src]
T: Codec,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe, [src]
T: RefUnwindSafe,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,