#[non_exhaustive]pub enum DelegateWasmAPIVersion {
V1(Delegate<'static>),
}
Expand description
Contains the different versions available for WASM delegates.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for DelegateWasmAPIVersion
impl Clone for DelegateWasmAPIVersion
Source§fn clone(&self) -> DelegateWasmAPIVersion
fn clone(&self) -> DelegateWasmAPIVersion
Returns a duplicate 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 DelegateWasmAPIVersion
impl Debug for DelegateWasmAPIVersion
Source§impl<'de> Deserialize<'de> for DelegateWasmAPIVersion
impl<'de> Deserialize<'de> for DelegateWasmAPIVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DelegateWasmAPIVersion
impl PartialEq for DelegateWasmAPIVersion
Source§impl Serialize for DelegateWasmAPIVersion
impl Serialize for DelegateWasmAPIVersion
impl Eq for DelegateWasmAPIVersion
impl StructuralPartialEq for DelegateWasmAPIVersion
Auto Trait Implementations§
impl Freeze for DelegateWasmAPIVersion
impl RefUnwindSafe for DelegateWasmAPIVersion
impl Send for DelegateWasmAPIVersion
impl Sync for DelegateWasmAPIVersion
impl Unpin for DelegateWasmAPIVersion
impl UnwindSafe for DelegateWasmAPIVersion
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