pub struct SandboxRun {
pub status: ExitStatus,
pub stdout: String,
pub stderr: String,
}Expand description
Captured output from codex sandbox <platform>.
Fields§
§status: ExitStatusExit status returned by the inner command (mirrors the sandbox helper).
stdout: StringCaptured stdout (mirrored to the console when mirror_stdout is true).
stderr: StringCaptured stderr (mirrored unless quiet is set).
Trait Implementations§
Source§impl Clone for SandboxRun
impl Clone for SandboxRun
Source§fn clone(&self) -> SandboxRun
fn clone(&self) -> SandboxRun
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 SandboxRun
impl RefUnwindSafe for SandboxRun
impl Send for SandboxRun
impl Sync for SandboxRun
impl Unpin for SandboxRun
impl UnsafeUnpin for SandboxRun
impl UnwindSafe for SandboxRun
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