Enum CanonicalOption
pub enum CanonicalOption {
UTF8,
UTF16,
CompactUTF16,
Memory(u32),
Realloc(u32),
PostReturn(u32),
Async,
Callback(u32),
CoreType(u32),
Gc,
}
Expand description
Represents options for component functions.
Variants§
UTF8
The string types in the function signature are UTF-8 encoded.
UTF16
The string types in the function signature are UTF-16 encoded.
CompactUTF16
The string types in the function signature are compact UTF-16 encoded.
Memory(u32)
The memory to use if the lifting or lowering of a function requires memory access.
The value is an index to a core memory.
Realloc(u32)
The realloc function to use if the lifting or lowering of a function requires memory allocation.
The value is an index to a core function of type (func (param i32 i32 i32 i32) (result i32))
.
PostReturn(u32)
The post-return function to use if the lifting of a function requires cleanup after the function returns.
Async
Indicates that specified function should be lifted or lowered using the async
ABI.
Callback(u32)
The function to use if the async lifting of a function should receive task/stream/future progress events using a callback.
CoreType(u32)
The core function type to lower this component function to.
Gc
Use the GC version of the canonical ABI.
Trait Implementations§
§impl Clone for CanonicalOption
impl Clone for CanonicalOption
§fn clone(&self) -> CanonicalOption
fn clone(&self) -> CanonicalOption
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for CanonicalOption
impl Debug for CanonicalOption
§impl From<CanonicalOption> for CanonicalOption
impl From<CanonicalOption> for CanonicalOption
§fn from(opt: CanonicalOption) -> CanonicalOption
fn from(opt: CanonicalOption) -> CanonicalOption
§impl<'a> FromReader<'a> for CanonicalOption
impl<'a> FromReader<'a> for CanonicalOption
§fn from_reader(
reader: &mut BinaryReader<'a>,
) -> Result<CanonicalOption, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a>, ) -> Result<CanonicalOption, BinaryReaderError>
Self
from the provided binary reader, returning an
error if it is unable to do so.§impl PartialEq for CanonicalOption
impl PartialEq for CanonicalOption
impl Copy for CanonicalOption
impl Eq for CanonicalOption
impl StructuralPartialEq for CanonicalOption
Auto Trait Implementations§
impl Freeze for CanonicalOption
impl RefUnwindSafe for CanonicalOption
impl Send for CanonicalOption
impl Sync for CanonicalOption
impl Unpin for CanonicalOption
impl UnwindSafe for CanonicalOption
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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