Add some missing stability attributes on struct fields.

This commit is contained in:
Huon Wilson 2015-02-25 23:12:22 +11:00
parent eafdc7135b
commit 060661d2b4
3 changed files with 4 additions and 1 deletions

View file

@ -384,7 +384,7 @@ impl<T> !Sync for SyncSender<T> {}
/// contains the data being sent as a payload so it can be recovered.
#[stable(feature = "rust1", since = "1.0.0")]
#[derive(PartialEq, Eq, Clone, Copy)]
pub struct SendError<T>(pub T);
pub struct SendError<T>(#[stable(feature = "rust1", since = "1.0.0")] pub T);
/// An error returned from the `recv` function on a `Receiver`.
///