Add some missing stability attributes on struct fields.
This commit is contained in:
parent
eafdc7135b
commit
060661d2b4
3 changed files with 4 additions and 1 deletions
|
|
@ -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`.
|
||||
///
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue