Enum wasm_encoder::component::CanonicalOption
source · [−]Expand description
Represents options for canonical functions and adapter 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.
WithRealloc(u32)
Specifies the function to use to reallocate memory.
WithFree(u32)
Specifies the function to use to free memory.
Trait Implementations
sourceimpl Clone for CanonicalOption
impl Clone for CanonicalOption
sourcefn clone(&self) -> CanonicalOption
fn clone(&self) -> CanonicalOption
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CanonicalOption
impl Debug for CanonicalOption
sourceimpl PartialEq<CanonicalOption> for CanonicalOption
impl PartialEq<CanonicalOption> for CanonicalOption
sourcefn eq(&self, other: &CanonicalOption) -> bool
fn eq(&self, other: &CanonicalOption) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CanonicalOption) -> bool
fn ne(&self, other: &CanonicalOption) -> bool
This method tests for !=
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more