s/Show/Debug/g

This commit is contained in:
Jorge Aparicio
2015-01-28 08:34:18 -05:00
parent 09ba9f5c87
commit 788181d405
195 changed files with 577 additions and 577 deletions

View File

@@ -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),