Trait wasmtime::component::ComponentType

source ·
pub unsafe trait ComponentType { }
Available on crate features runtime and component-model only.
Expand description

A trait representing types which can be passed to and read from components with the canonical ABI.

This trait is implemented for Rust types which can be communicated to components. The Func::typed and TypedFunc Rust items are the main consumers of this trait.

Supported Rust types include:

Component Model TypeRust Type
{s,u}{8,16,32,64}{i,u}{8,16,32,64}
f{32,64}f{32,64}
boolbool
charchar
tuple<A, B>(A, B)
option<T>Option<T>
resultResult<(), ()>
result<T>Result<T, ()>
result<_, E>Result<(), E>
result<T, E>Result<T, E>
stringString, &str, or WasmStr
list<T>Vec<T>, &[T], or WasmList
own<T>, borrow<T>Resource<T> or ResourceAny
record#[derive(ComponentType)]
variant#[derive(ComponentType)]
enum#[derive(ComponentType)]
flagsflags!

Rust standard library pointers such as &T, Box<T>, Rc<T>, and Arc<T> additionally represent whatever type T represents in the component model. Note that types such as record, variant, enum, and flags are generated by the embedder at compile time. These macros derive implementation of this trait for custom types to map to custom types in the component model. Note that for record, variant, enum, and flags those types are often generated by the bindgen! macro from WIT definitions.

Types that implement ComponentType are used for Params and Return in TypedFunc and Func::typed.

The contents of this trait are hidden as it’s intended to be an implementation detail of Wasmtime. The contents of this trait are not covered by Wasmtime’s stability guarantees.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ComponentType for bool

source§

impl ComponentType for char

source§

impl ComponentType for f32

source§

impl ComponentType for f64

source§

impl ComponentType for i8

source§

impl ComponentType for i16

source§

impl ComponentType for i32

source§

impl ComponentType for i64

source§

impl ComponentType for str

source§

impl ComponentType for u8

source§

impl ComponentType for u16

source§

impl ComponentType for u32

source§

impl ComponentType for u64

source§

impl ComponentType for ()

source§

impl ComponentType for String

source§

impl<A1> ComponentType for (A1,)
where A1: ComponentType,

source§

impl<A1, A2> ComponentType for (A1, A2)

source§

impl<A1, A2, A3> ComponentType for (A1, A2, A3)

source§

impl<A1, A2, A3, A4> ComponentType for (A1, A2, A3, A4)

source§

impl<A1, A2, A3, A4, A5> ComponentType for (A1, A2, A3, A4, A5)

source§

impl<A1, A2, A3, A4, A5, A6> ComponentType for (A1, A2, A3, A4, A5, A6)

source§

impl<A1, A2, A3, A4, A5, A6, A7> ComponentType for (A1, A2, A3, A4, A5, A6, A7)

source§

impl<A1, A2, A3, A4, A5, A6, A7, A8> ComponentType for (A1, A2, A3, A4, A5, A6, A7, A8)

source§

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9> ComponentType for (A1, A2, A3, A4, A5, A6, A7, A8, A9)

source§

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10> ComponentType for (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)

source§

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11> ComponentType for (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)

source§

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12> ComponentType for (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)

source§

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13> ComponentType for (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)

source§

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14> ComponentType for (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14)

source§

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15> ComponentType for (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15)

source§

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16> ComponentType for (A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16)

source§

impl<T> ComponentType for Option<T>
where T: ComponentType,

source§

impl<T> ComponentType for [T]
where T: ComponentType,

source§

impl<T, E> ComponentType for Result<T, E>

source§

impl<T: ComponentType + ?Sized> ComponentType for &T

source§

impl<T: ComponentType + ?Sized> ComponentType for Box<T>

source§

impl<T: ComponentType + ?Sized> ComponentType for Rc<T>

source§

impl<T: ComponentType + ?Sized> ComponentType for Arc<T>

source§

impl<T: ComponentType> ComponentType for Vec<T>

Implementors§