pub enum CanonicalOption {
UTF8,
UTF16,
CompactUTF16,
Into(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.
Into(u32)
The lifting or lowering operation requires access to a memory, realloc function, or free function.
The value is expected to be an instance exporting the canonical ABI memory and functions.
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 PartialEq<CanonicalOption> for CanonicalOption
impl PartialEq<CanonicalOption> for CanonicalOption
source§fn eq(&self, other: &CanonicalOption) -> bool
fn eq(&self, other: &CanonicalOption) -> bool
impl Copy for CanonicalOption
impl Eq for CanonicalOption
impl StructuralEq for CanonicalOption
impl StructuralPartialEq for CanonicalOption
Auto Trait Implementations§
impl RefUnwindSafe for CanonicalOption
impl Send for CanonicalOption
impl Sync for CanonicalOption
impl Unpin for CanonicalOption
impl UnwindSafe for CanonicalOption
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.