Enum fluence_app_service::IValue

source ·
pub enum IValue {
Show 17 variants Boolean(bool), S8(i8), S16(i16), S32(i32), S64(i64), U8(u8), U16(u16), U32(u32), U64(u64), F32(f32), F64(f64), String(String), ByteArray(Vec<u8>), Array(Vec<IValue>), I32(i32), I64(i64), Record(NEVec<IValue>),
}
Expand description

A WIT value.

Variants§

§

Boolean(bool)

Boolean value.

§

S8(i8)

A 8-bits signed integer.

§

S16(i16)

A 16-bits signed integer.

§

S32(i32)

A 32-bits signed integer.

§

S64(i64)

A 64-bits signed integer.

§

U8(u8)

A 8-bits unsigned integer.

§

U16(u16)

A 16-bits unsigned integer.

§

U32(u32)

A 32-bits unsigned integer.

§

U64(u64)

A 64-bits unsigned integer.

§

F32(f32)

A 32-bits float.

§

F64(f64)

A 64-bits float.

§

String(String)

A string.

§

ByteArray(Vec<u8>)

Specialization of array type for byte vector.

§

Array(Vec<IValue>)

A byte array.

§

I32(i32)

A 32-bits integer (as defined in WebAssembly core).

§

I64(i64)

A 64-bits integer (as defined in WebAssembly core).

§

Record(NEVec<IValue>)

A record.

Implementations§

source§

impl IValue

source

pub const VARIANT_COUNT: usize = 17usize

Trait Implementations§

source§

impl Clone for IValue

source§

fn clone(&self) -> IValue

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for IValue

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for IValue

source§

fn default() -> IValue

Returns the “default value” for a type. Read more
source§

impl From<String> for IValue

source§

fn from(n: String) -> IValue

Converts to this type from the input type.
source§

impl From<Vec<u8>> for IValue

source§

fn from(n: Vec<u8>) -> IValue

Converts to this type from the input type.
source§

impl From<f32> for IValue

source§

fn from(n: f32) -> IValue

Converts to this type from the input type.
source§

impl From<f64> for IValue

source§

fn from(n: f64) -> IValue

Converts to this type from the input type.
source§

impl From<i16> for IValue

source§

fn from(n: i16) -> IValue

Converts to this type from the input type.
source§

impl From<i32> for IValue

source§

fn from(n: i32) -> IValue

Converts to this type from the input type.
source§

impl From<i64> for IValue

source§

fn from(n: i64) -> IValue

Converts to this type from the input type.
source§

impl From<i8> for IValue

source§

fn from(n: i8) -> IValue

Converts to this type from the input type.
source§

impl From<u16> for IValue

source§

fn from(n: u16) -> IValue

Converts to this type from the input type.
source§

impl From<u32> for IValue

source§

fn from(n: u32) -> IValue

Converts to this type from the input type.
source§

impl From<u64> for IValue

source§

fn from(n: u64) -> IValue

Converts to this type from the input type.
source§

impl From<u8> for IValue

source§

fn from(n: u8) -> IValue

Converts to this type from the input type.
source§

impl PartialEq for IValue

source§

fn eq(&self, other: &IValue) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<IValue> for Vec<u8>

§

type Error = WasmValueNativeCastError

The type returned in the event of a conversion error.
source§

fn try_from(w: IValue) -> Result<Vec<u8>, <Vec<u8> as TryFrom<IValue>>::Error>

Performs the conversion.
source§

impl StructuralPartialEq for IValue

Auto Trait Implementations§

§

impl Freeze for IValue

§

impl RefUnwindSafe for IValue

§

impl Send for IValue

§

impl Sync for IValue

§

impl Unpin for IValue

§

impl UnwindSafe for IValue

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> GetSetFdFlags for T

source§

fn get_fd_flags(&self) -> Result<FdFlags, Error>
where T: AsFilelike,

Query the “status” flags for the self file descriptor.
source§

fn new_set_fd_flags(&self, fd_flags: FdFlags) -> Result<SetFdFlags<T>, Error>
where T: AsFilelike,

Create a new SetFdFlags value for use with set_fd_flags. Read more
source§

fn set_fd_flags(&mut self, set_fd_flags: SetFdFlags<T>) -> Result<(), Error>
where T: AsFilelike,

Set the “status” flags for the self file descriptor. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Pointee for T

§

type Pointer = u32

source§

fn debug( pointer: <T as Pointee>::Pointer, f: &mut Formatter<'_> ) -> Result<(), Error>

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more