pub struct AppRunResult {
pub exit_code: i32,
pub stdout: String,
pub stderr: String,
}Expand description
In-memory process output and exit result produced by the core app runner.
Fields§
§exit_code: i32Process exit code.
stdout: StringPayload that should be written to stdout.
stderr: StringPayload that should be written to stderr.
Trait Implementations§
Source§impl Clone for AppRunResult
impl Clone for AppRunResult
Source§fn clone(&self) -> AppRunResult
fn clone(&self) -> AppRunResult
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 moreSource§impl Debug for AppRunResult
impl Debug for AppRunResult
Source§impl PartialEq for AppRunResult
impl PartialEq for AppRunResult
impl Eq for AppRunResult
impl StructuralPartialEq for AppRunResult
Auto Trait Implementations§
impl Freeze for AppRunResult
impl RefUnwindSafe for AppRunResult
impl Send for AppRunResult
impl Sync for AppRunResult
impl Unpin for AppRunResult
impl UnsafeUnpin for AppRunResult
impl UnwindSafe for AppRunResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.