pub struct BackgroundReadResult {
pub stdout: String,
pub stderr: String,
pub running: bool,
pub exit_code: Option<i32>,
pub total_bytes_stdout: u64,
pub total_bytes_stderr: u64,
}Fields§
§stdout: String§stderr: String§running: bool§exit_code: Option<i32>§total_bytes_stdout: u64§total_bytes_stderr: u64Trait Implementations§
Source§impl Clone for BackgroundReadResult
impl Clone for BackgroundReadResult
Source§fn clone(&self) -> BackgroundReadResult
fn clone(&self) -> BackgroundReadResult
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 BackgroundReadResult
impl RefUnwindSafe for BackgroundReadResult
impl Send for BackgroundReadResult
impl Sync for BackgroundReadResult
impl Unpin for BackgroundReadResult
impl UnsafeUnpin for BackgroundReadResult
impl UnwindSafe for BackgroundReadResult
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