1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! Typed errors for the streaming engine.
/// Why [`spawn_streaming`](crate::spawn_streaming) or
/// [`ProcessHandle::cancel`](crate::ProcessHandle::cancel) failed.
///
/// Carries the real underlying [`std::io::Error`] as a source (via
/// [`std::error::Error::source`]) rather than a pre-formatted string, so a
/// caller can downcast or inspect the OS error (e.g. distinguish
/// `NotFound` — the binary isn't on `PATH` — from `PermissionDenied`).
/// `#[non_exhaustive]` so adding a variant later isn't a breaking change.