instability_example/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
#![cfg_attr(docsrs, feature(doc_cfg))]
#![allow(dead_code)]

//! This is an example library demonstrating various attributes from the [`instability`] crate.

/// A stable type alias
///
/// This type alias is stable
#[instability::stable(since = "v1.0.0")]
pub type StableTypeAlias = u8;

/// An unstable type alias
///
/// This type alias is unstable
#[instability::unstable(feature = "type-alias")]
pub type UnstableTypeAlias = u8;

/// A stable constant
///
/// This constant is stable
#[instability::stable(since = "v1.0.0")]
pub const STABLE_CONSTANT: u8 = 42;

/// An unstable constant
///
/// This constant is unstable
#[instability::unstable(feature = "constant")]
pub const UNSTABLE_CONSTANT: u8 = 42;

/// A stable static
///
/// This static is stable
#[instability::stable(since = "v1.0.0")]
pub static STABLE_STATIC: u8 = 42;

/// An unstable static
///
/// This static is unstable
#[instability::unstable(feature = "static")]
pub static UNSTABLE_STATIC: u8 = 42;

/// A stable function
///
/// This function is stable
#[instability::stable(since = "v1.0.0")]
pub fn stable_function() {
    unimplemented!()
}

/// An unstable function
///
/// This function is unstable
#[instability::unstable(feature = "function")]
pub fn unstable_function() {
    unimplemented!()
}

/// A stable struct
///
/// This struct is stable
#[instability::stable(since = "v1.0.0")]
pub struct StableStruct {
    pub x: u8,
}

impl StableStruct {
    /// An unstable method
    ///
    /// This method is unstable
    #[instability::unstable(feature = "method")]
    pub fn unstable_method(&self) {
        unimplemented!()
    }

    /// A stable method
    ///
    /// This method is stable
    #[instability::stable(since = "v1.0.0")]
    pub fn stable_method(&self) {
        unimplemented!()
    }
}

/// An unstable struct
///
/// This struct is unstable
#[instability::unstable(feature = "struct")]
pub struct UnstableStruct {
    pub x: u8,
}

impl UnstableStruct {
    /// An unstable method
    ///
    /// This method is unstable
    #[instability::unstable(feature = "method")]
    pub fn unstable_method(&self) {
        unimplemented!()
    }

    /// A stable method
    ///
    /// This method is stable
    #[allow(
        unreachable_pub,
        // reason = "The unstable macros cannot make the method pub(crate)"
    )]
    #[instability::stable(since = "v1.0.0")]
    pub fn stable_method(&self) {
        unimplemented!()
    }
}

/// An unstable struct with an issue link
///
/// This struct is unstable and has an issue link.
#[instability::unstable(feature = "struct-with-issue", issue = "#123")]
pub struct UnstableStructWithIssue {
    pub x: u8,
}

/// A stable trait
///
/// This trait is stable
#[instability::stable(since = "v1.0.0")]
pub trait StableTrait {
    /// A stable trait method
    ///
    /// This method is stable.
    fn stable_trait_method(&self) {
        unimplemented!()
    }

    // Not yet supported
    // /// An unstable trait method
    // ///
    // /// This method is unstable.
    // #[instability::unstable(feature = "trait-method")]
    // fn unstable_trait_method(&self);
}

#[instability::stable(since = "v1.0.0")]
impl StableTrait for StableStruct {}

/// An unstable trait
///
/// This trait is unstable
#[instability::unstable(feature = "trait")]
pub trait UnstableTrait {
    /// A stable trait method
    ///
    /// This method is stable.
    fn stable_trait_method(&self) {
        unimplemented!()
    }

    // Not yet supported
    // /// An unstable trait method
    // ///
    // /// This method is not implemented yet.
    // #[instability::unstable(feature = "trait-method")]
    // fn unstable_trait_method(&self);
}

#[instability::unstable(feature = "trait")]
impl UnstableTrait for StableStruct {}

/// A stable enum
///
/// This enum is stable.
#[instability::stable(since = "v1.0.0")]
pub enum StableEnum {
    /// An enum variant
    ///
    /// This variant is stable.
    Variant,
}

/// An unstable enum
///
/// This enum is unstable.
#[instability::unstable(feature = "enum")]
pub enum UnstableEnum {
    /// An enum variant
    ///
    /// This variant is stable.
    Variant,
    // Not yet supported
    // /// An unstable enum variant
    // ///
    // /// This variant is not implemented yet.
    // #[instability::unstable(feature = "enum-variant")]
    // UnstableVariant,
}

/// A stable module
///
/// This module is stable.
#[instability::stable(since = "v1.0.0")]
pub mod stable {
    /// A stable function
    ///
    /// This function is stable.
    pub fn stable_function() {
        unimplemented!()
    }

    /// An unstable function
    ///
    /// This function is unstable.
    #[instability::unstable(feature = "function")]
    pub fn unstable_function() {
        unimplemented!()
    }
}

/// An unstable module
///
/// This module is unstable.
#[instability::unstable(feature = "module")]
pub mod unstable {
    /// A stable function
    ///
    /// This function is stable.
    #[instability::stable(since = "v1.0.0")]
    pub fn stable_function() {
        unimplemented!()
    }

    /// An unstable function
    ///
    /// This function is unstable.
    #[instability::unstable(feature = "function")]
    pub fn unstable_function() {
        unimplemented!()
    }
}

/// A private module
///
/// This module is private.
mod private {
    /// A private function
    ///
    /// This function is private.
    pub fn private_function() {
        unimplemented!()
    }

    /// An unstable private function
    ///
    /// This function is unstable.
    #[instability::unstable(feature = "private-function")]
    pub fn unstable_private_function() {
        unimplemented!()
    }
}

/// A stable re-export of a private stable item
///
/// This re-export is stable.
pub use private::private_function as stable_reexport;

/// An unstable re-export of a private stable item
///
/// This re-export is unstable.
#[instability::unstable(feature = "reexport")]
#[allow(unused_imports)]
pub use private::private_function as unstable_reexport;

// This does not work as the unstable_private_function is only public within the crate and cannot
// be re-exported
// /// A stable reexport of a private unstable item
// ///
// /// This export is stable.
// pub use private::unstable_private_function as stable_unstable_reexport;

/// An unstable reexport of a private unstable item
///
/// This export is unstable. The availability section on this will be appended to the availability
/// section of the unstable_private_function, which will look odd. Consider avoiding re-exporting
/// unstable items like this, and instead only mark the re-export itself as unstable.
#[instability::unstable(feature = "reexport")]
#[allow(unused_imports)]
pub use private::unstable_private_function as unstable_unstable_export;