pub struct PythonREPLOutput {
pub code: String,
pub stdout: String,
pub stderr: String,
pub exit_code: i32,
}Expand description
Python REPL tool output
Fields§
§code: StringThe code that was executed
stdout: StringStandard output
stderr: StringStandard error
exit_code: i32Exit code
Trait Implementations§
Source§impl Debug for PythonREPLOutput
impl Debug for PythonREPLOutput
Auto Trait Implementations§
impl Freeze for PythonREPLOutput
impl RefUnwindSafe for PythonREPLOutput
impl Send for PythonREPLOutput
impl Sync for PythonREPLOutput
impl Unpin for PythonREPLOutput
impl UnsafeUnpin for PythonREPLOutput
impl UnwindSafe for PythonREPLOutput
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