pub struct TerminalExecution {
pub output: String,
pub exit_code: Option<i32>,
pub cwd: PathBuf,
pub detached_pid: Option<u32>,
}Fields§
§output: String§exit_code: Option<i32>§cwd: PathBuf§detached_pid: Option<u32>Trait Implementations§
Source§impl Clone for TerminalExecution
impl Clone for TerminalExecution
Source§fn clone(&self) -> TerminalExecution
fn clone(&self) -> TerminalExecution
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 TerminalExecution
impl Debug for TerminalExecution
Source§impl PartialEq for TerminalExecution
impl PartialEq for TerminalExecution
impl Eq for TerminalExecution
impl StructuralPartialEq for TerminalExecution
Auto Trait Implementations§
impl Freeze for TerminalExecution
impl RefUnwindSafe for TerminalExecution
impl Send for TerminalExecution
impl Sync for TerminalExecution
impl Unpin for TerminalExecution
impl UnsafeUnpin for TerminalExecution
impl UnwindSafe for TerminalExecution
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