#[non_exhaustive]pub enum CommandEvent {
Stderr(Vec<u8>),
Stdout(Vec<u8>),
Error(String),
Terminated(TerminatedPayload),
}
Expand description
A event sent to the command callback.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Stderr(Vec<u8>)
If configured for raw output, all bytes written to stderr. Otherwise, bytes until a newline (\n) or carriage return (\r) is found.
Stdout(Vec<u8>)
If configured for raw output, all bytes written to stdout. Otherwise, bytes until a newline (\n) or carriage return (\r) is found.
Error(String)
An error happened waiting for the command to finish or converting the stdout/stderr bytes to a UTF-8 string.
Terminated(TerminatedPayload)
Command process terminated.
Trait Implementations§
source§impl Clone for CommandEvent
impl Clone for CommandEvent
source§fn clone(&self) -> CommandEvent
fn clone(&self) -> CommandEvent
Returns a copy 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 CommandEvent
impl RefUnwindSafe for CommandEvent
impl Send for CommandEvent
impl Sync for CommandEvent
impl Unpin for CommandEvent
impl UnwindSafe for CommandEvent
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)