Enum tauri_plugin_shell::process::CommandEvent
source · #[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>)
Stderr bytes until a newline (\n) or carriage return (\r) is found.
Stdout(Vec<u8>)
Stdout 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 an 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 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