pub struct ApplyDiffArtifacts {
pub status: ExitStatus,
pub stdout: String,
pub stderr: String,
}Expand description
Captured output from task-oriented subcommands such as codex apply <TASK_ID> or
codex cloud diff <TASK_ID>.
Fields§
§status: ExitStatusExit status returned by the subcommand.
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 ApplyDiffArtifacts
impl Clone for ApplyDiffArtifacts
Source§fn clone(&self) -> ApplyDiffArtifacts
fn clone(&self) -> ApplyDiffArtifacts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApplyDiffArtifacts
impl RefUnwindSafe for ApplyDiffArtifacts
impl Send for ApplyDiffArtifacts
impl Sync for ApplyDiffArtifacts
impl Unpin for ApplyDiffArtifacts
impl UnsafeUnpin for ApplyDiffArtifacts
impl UnwindSafe for ApplyDiffArtifacts
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