pub struct SandboxOutput {
pub stdout: Vec<u8>,
pub stderr: Vec<u8>,
pub exit: i32,
}Fields§
§stdout: Vec<u8>§stderr: Vec<u8>§exit: i32Trait Implementations§
Source§impl Clone for SandboxOutput
impl Clone for SandboxOutput
Source§fn clone(&self) -> SandboxOutput
fn clone(&self) -> SandboxOutput
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 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