pub enum WasmExecutionEvent {
Stdout(Vec<u8>),
Stderr(Vec<u8>),
SyncRpcRequest(JavascriptSyncRpcRequest),
SignalState {
signal: u32,
registration: WasmSignalHandlerRegistration,
},
Exited(i32),
}Variants§
Trait Implementations§
Source§impl Clone for WasmExecutionEvent
impl Clone for WasmExecutionEvent
Source§fn clone(&self) -> WasmExecutionEvent
fn clone(&self) -> WasmExecutionEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WasmExecutionEvent
impl Debug for WasmExecutionEvent
impl Eq for WasmExecutionEvent
Source§impl PartialEq for WasmExecutionEvent
impl PartialEq for WasmExecutionEvent
Source§fn eq(&self, other: &WasmExecutionEvent) -> bool
fn eq(&self, other: &WasmExecutionEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WasmExecutionEvent
Auto Trait Implementations§
impl Freeze for WasmExecutionEvent
impl RefUnwindSafe for WasmExecutionEvent
impl Send for WasmExecutionEvent
impl Sync for WasmExecutionEvent
impl Unpin for WasmExecutionEvent
impl UnsafeUnpin for WasmExecutionEvent
impl UnwindSafe for WasmExecutionEvent
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