pub enum DelegateResultKind {
PrintOnly {
message: String,
},
Executed {
exit_code: Option<i32>,
stdout: String,
stderr: String,
},
}Expand description
The kind of delegate result.
Variants§
Auto Trait Implementations§
impl Freeze for DelegateResultKind
impl RefUnwindSafe for DelegateResultKind
impl Send for DelegateResultKind
impl Sync for DelegateResultKind
impl Unpin for DelegateResultKind
impl UnsafeUnpin for DelegateResultKind
impl UnwindSafe for DelegateResultKind
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