pub enum PythonExecutionEvent {
Stdout(Vec<u8>),
Stderr(Vec<u8>),
JavascriptSyncRpcRequest(JavascriptSyncRpcRequest),
VfsRpcRequest(Box<PythonVfsRpcRequest>),
Exited(i32),
}Variants§
Stdout(Vec<u8>)
Stderr(Vec<u8>)
JavascriptSyncRpcRequest(JavascriptSyncRpcRequest)
VfsRpcRequest(Box<PythonVfsRpcRequest>)
Exited(i32)
Trait Implementations§
Source§impl Clone for PythonExecutionEvent
impl Clone for PythonExecutionEvent
Source§fn clone(&self) -> PythonExecutionEvent
fn clone(&self) -> PythonExecutionEvent
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 PythonExecutionEvent
impl Debug for PythonExecutionEvent
impl Eq for PythonExecutionEvent
Source§impl PartialEq for PythonExecutionEvent
impl PartialEq for PythonExecutionEvent
Source§fn eq(&self, other: &PythonExecutionEvent) -> bool
fn eq(&self, other: &PythonExecutionEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PythonExecutionEvent
Auto Trait Implementations§
impl Freeze for PythonExecutionEvent
impl RefUnwindSafe for PythonExecutionEvent
impl Send for PythonExecutionEvent
impl Sync for PythonExecutionEvent
impl Unpin for PythonExecutionEvent
impl UnsafeUnpin for PythonExecutionEvent
impl UnwindSafe for PythonExecutionEvent
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