s/Show/Debug/g
This commit is contained in:
@@ -96,12 +96,12 @@ pub struct Process {
|
||||
/// A representation of environment variable name
|
||||
/// It compares case-insensitive on Windows and case-sensitive everywhere else.
|
||||
#[cfg(not(windows))]
|
||||
#[derive(Hash, PartialEq, Eq, Clone, Show)]
|
||||
#[derive(Hash, PartialEq, Eq, Clone, Debug)]
|
||||
struct EnvKey(CString);
|
||||
|
||||
#[doc(hidden)]
|
||||
#[cfg(windows)]
|
||||
#[derive(Eq, Clone, Show)]
|
||||
#[derive(Eq, Clone, Debug)]
|
||||
struct EnvKey(CString);
|
||||
|
||||
#[cfg(windows)]
|
||||
@@ -492,7 +492,7 @@ pub enum StdioContainer {
|
||||
|
||||
/// Describes the result of a process after it has terminated.
|
||||
/// Note that Windows have no signals, so the result is usually ExitStatus.
|
||||
#[derive(PartialEq, Eq, Clone, Copy, Show)]
|
||||
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
|
||||
pub enum ProcessExit {
|
||||
/// Normal termination with an exit status.
|
||||
ExitStatus(int),
|
||||
|
||||
Reference in New Issue
Block a user