Enum witx::Abi [−][src]
pub enum Abi {
Preview1,
}
Expand description
Possible ABIs for interface functions to have.
Note that this is a stopgap until we have more of interface types. Interface types functions do not have ABIs, they have APIs. For the meantime, however, we mandate ABIs to ensure we can all talk to each other.
Variants
Only stable ABI currently, and is the historical WASI ABI since it was first created.
Note that this ABI is limited notably in its return values where it can
only return 0 results or one Result<T, enum>
lookalike.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Abi
impl UnwindSafe for Abi
Blanket Implementations
Mutably borrows from an owned value. Read more