pub enum SignExtensionOperator {
I32Extend8S,
I32Extend16S,
I64Extend8S,
I64Extend16S,
I64Extend32S,
}Expand description
A subset of WebAssembly operations given by the SignExtension proposal
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SignExtensionOperator
impl Clone for SignExtensionOperator
Source§fn clone(&self) -> SignExtensionOperator
fn clone(&self) -> SignExtensionOperator
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 SignExtensionOperator
impl Debug for SignExtensionOperator
Source§impl<'a> From<SignExtensionOperator> for Operator<'a>
impl<'a> From<SignExtensionOperator> for Operator<'a>
Source§fn from(op: SignExtensionOperator) -> Self
fn from(op: SignExtensionOperator) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SignExtensionOperator
impl RefUnwindSafe for SignExtensionOperator
impl Send for SignExtensionOperator
impl Sync for SignExtensionOperator
impl Unpin for SignExtensionOperator
impl UnwindSafe for SignExtensionOperator
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