pub struct PythonExecutionResult {
pub execution_id: String,
pub exit_code: i32,
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
}Fields§
§execution_id: String§exit_code: i32§stdout: Vec<u8>§stderr: Vec<u8>Trait Implementations§
Source§impl Clone for PythonExecutionResult
impl Clone for PythonExecutionResult
Source§fn clone(&self) -> PythonExecutionResult
fn clone(&self) -> PythonExecutionResult
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 PythonExecutionResult
impl Debug for PythonExecutionResult
impl Eq for PythonExecutionResult
Source§impl PartialEq for PythonExecutionResult
impl PartialEq for PythonExecutionResult
Source§fn eq(&self, other: &PythonExecutionResult) -> bool
fn eq(&self, other: &PythonExecutionResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PythonExecutionResult
Auto Trait Implementations§
impl Freeze for PythonExecutionResult
impl RefUnwindSafe for PythonExecutionResult
impl Send for PythonExecutionResult
impl Sync for PythonExecutionResult
impl Unpin for PythonExecutionResult
impl UnsafeUnpin for PythonExecutionResult
impl UnwindSafe for PythonExecutionResult
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