pub struct PythonREPLOutput {
pub code: String,
pub stdout: String,
pub stderr: String,
pub exit_code: i32,
}Expand description
Python REPL 工具输出
Fields§
§code: String执行的代码
stdout: String标准输出
stderr: String标准错误
exit_code: i32退出码
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