pub struct SandboxOutput {
pub stdout: String,
pub stderr: String,
pub exit_code: i32,
}Expand description
Output from running a command inside a sandbox.
Fields§
§stdout: StringStandard output bytes decoded as UTF-8.
stderr: StringStandard error bytes decoded as UTF-8.
exit_code: i32Process exit code (0 = success).
Auto Trait Implementations§
impl Freeze for SandboxOutput
impl RefUnwindSafe for SandboxOutput
impl Send for SandboxOutput
impl Sync for SandboxOutput
impl Unpin for SandboxOutput
impl UnsafeUnpin for SandboxOutput
impl UnwindSafe for SandboxOutput
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