pub enum BashKillResult {
Killed {
output: String,
job_id: String,
signal: String,
},
Error(BashError),
}Variants§
Trait Implementations§
Source§impl Clone for BashKillResult
impl Clone for BashKillResult
Source§fn clone(&self) -> BashKillResult
fn clone(&self) -> BashKillResult
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 BashKillResult
impl Debug for BashKillResult
Source§impl<'de> Deserialize<'de> for BashKillResult
impl<'de> Deserialize<'de> for BashKillResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<BashError> for BashKillResult
impl From<BashError> for BashKillResult
Auto Trait Implementations§
impl Freeze for BashKillResult
impl RefUnwindSafe for BashKillResult
impl Send for BashKillResult
impl Sync for BashKillResult
impl Unpin for BashKillResult
impl UnsafeUnpin for BashKillResult
impl UnwindSafe for BashKillResult
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