Enum air_test_utils::prelude::IType
pub enum IType {
}
Expand description
Represents the types supported by WIT.
Variants§
Boolean
Boolean.
S8
A 8-bits signed integer.
S16
A 16-bits signed integer.
S32
A 32-bits signed integer.
S64
A 64-bits signed integer.
U8
A 8-bits unsigned integer.
U16
A 16-bits unsigned integer.
U32
A 32-bits unsigned integer.
U64
A 64-bits unsigned integer.
F32
A 32-bits float.
F64
A 64-bits float.
String
A string.
ByteArray
Specialization of arrays for byte vector.
Array(Box<IType, Global>)
An array of values of the same type.
I32
A 32-bits integer (as defined in WebAssembly core).
I64
A 64-bits integer (as defined in WebAssembly core).
Record(u64)
A record contains record index from interfaces AST.
Implementations§
§impl IType
impl IType
pub const VARIANT_COUNT: usize = 17usize
Trait Implementations§
§impl<'de> Deserialize<'de> for IType
impl<'de> Deserialize<'de> for IType
§fn deserialize<__D>(
__deserializer: __D
) -> Result<IType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<IType, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Serialize for IType
impl Serialize for IType
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for IType
impl StructuralEq for IType
impl StructuralPartialEq for IType
Auto Trait Implementations§
impl RefUnwindSafe for IType
impl Send for IType
impl Sync for IType
impl Unpin for IType
impl UnwindSafe for IType
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where T: AsFilelike,
Query the “status” flags for the
self
file descriptor.