pub enum CanonicalOption {
UTF8,
UTF16,
CompactUTF16,
Memory(u32),
Realloc(u32),
PostReturn(u32),
}
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.
Trait Implementations§
source§impl Clone for CanonicalOption
impl Clone for CanonicalOption
source§fn clone(&self) -> CanonicalOption
fn clone(&self) -> CanonicalOption
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CanonicalOption
impl Debug for CanonicalOption
source§impl<'a> FromReader<'a> for CanonicalOption
impl<'a> FromReader<'a> for CanonicalOption
source§fn from_reader(
reader: &mut BinaryReader<'a>,
) -> Result<CanonicalOption, BinaryReaderError>
fn from_reader( reader: &mut BinaryReader<'a>, ) -> Result<CanonicalOption, BinaryReaderError>
Attempts to read
Self
from the provided binary reader, returning an
error if it is unable to do so.source§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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.