diff options
Diffstat (limited to 'src/libstd/comm')
| -rw-r--r-- | src/libstd/comm/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/comm/mod.rs b/src/libstd/comm/mod.rs index 145bee50a20..7345193a751 100644 --- a/src/libstd/comm/mod.rs +++ b/src/libstd/comm/mod.rs @@ -313,7 +313,7 @@ pub struct Chan<T> { /// This enumeration is the list of the possible reasons that try_recv could not /// return data when called. -#[deriving(Eq, Clone)] +#[deriving(Eq, Clone, Show)] pub enum TryRecvResult<T> { /// This channel is currently empty, but the sender(s) have not yet /// disconnected, so data may yet become available. |
