pub struct ExecutionOutput {
    pub stdout: String,
    pub stderr: String,
    pub result: Option<String>,
    pub exception_type: Option<String>,
    pub exception_value: Option<String>,
    pub traceback: Option<String>,
    pub json: Option<Value>,
    pub shared_buffers: Vec<SharedBuffer>,
}Fields§
§stdout: String§stderr: String§result: Option<String>§exception_type: Option<String>§exception_value: Option<String>§traceback: Option<String>§json: Option<Value>Trait Implementations§
Source§impl Clone for ExecutionOutput
 
impl Clone for ExecutionOutput
Source§fn clone(&self) -> ExecutionOutput
 
fn clone(&self) -> ExecutionOutput
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 moreAuto Trait Implementations§
impl Freeze for ExecutionOutput
impl RefUnwindSafe for ExecutionOutput
impl Send for ExecutionOutput
impl Sync for ExecutionOutput
impl Unpin for ExecutionOutput
impl UnwindSafe for ExecutionOutput
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