pub struct BashRunResult {
pub exit_code: Option<i32>,
pub killed: bool,
pub signal: Option<String>,
}Fields§
§exit_code: Option<i32>§killed: bool§signal: Option<String>Auto Trait Implementations§
impl Freeze for BashRunResult
impl RefUnwindSafe for BashRunResult
impl Send for BashRunResult
impl Sync for BashRunResult
impl Unpin for BashRunResult
impl UnsafeUnpin for BashRunResult
impl UnwindSafe for BashRunResult
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