|
18 | 18 |
|
19 | 19 | // Reexported core operators |
20 | 20 | #[stable(feature = "core_prelude", since = "1.4.0")] |
21 | | -#[doc(no_inline)] pub use marker::{Copy, Send, Sized, Sync}; |
| 21 | +#[doc(no_inline)] |
| 22 | +pub use marker::{Copy, Send, Sized, Sync}; |
22 | 23 | #[stable(feature = "core_prelude", since = "1.4.0")] |
23 | | -#[doc(no_inline)] pub use ops::{Drop, Fn, FnMut, FnOnce}; |
| 24 | +#[doc(no_inline)] |
| 25 | +pub use ops::{Drop, Fn, FnMut, FnOnce}; |
24 | 26 |
|
25 | 27 | // Reexported functions |
26 | 28 | #[stable(feature = "core_prelude", since = "1.4.0")] |
27 | | -#[doc(no_inline)] pub use mem::drop; |
| 29 | +#[doc(no_inline)] |
| 30 | +pub use mem::drop; |
28 | 31 |
|
29 | 32 | // Reexported types and traits |
30 | 33 | #[stable(feature = "core_prelude", since = "1.4.0")] |
31 | | -#[doc(no_inline)] pub use clone::Clone; |
| 34 | +#[doc(no_inline)] |
| 35 | +pub use clone::Clone; |
32 | 36 | #[stable(feature = "core_prelude", since = "1.4.0")] |
33 | | -#[doc(no_inline)] pub use cmp::{PartialEq, PartialOrd, Eq, Ord}; |
| 37 | +#[doc(no_inline)] |
| 38 | +pub use cmp::{PartialEq, PartialOrd, Eq, Ord}; |
34 | 39 | #[stable(feature = "core_prelude", since = "1.4.0")] |
35 | | -#[doc(no_inline)] pub use convert::{AsRef, AsMut, Into, From}; |
| 40 | +#[doc(no_inline)] |
| 41 | +pub use convert::{AsRef, AsMut, Into, From}; |
36 | 42 | #[stable(feature = "core_prelude", since = "1.4.0")] |
37 | | -#[doc(no_inline)] pub use default::Default; |
| 43 | +#[doc(no_inline)] |
| 44 | +pub use default::Default; |
38 | 45 | #[stable(feature = "core_prelude", since = "1.4.0")] |
39 | | -#[doc(no_inline)] pub use iter::{Iterator, Extend, IntoIterator}; |
| 46 | +#[doc(no_inline)] |
| 47 | +pub use iter::{Iterator, Extend, IntoIterator}; |
40 | 48 | #[stable(feature = "core_prelude", since = "1.4.0")] |
41 | | -#[doc(no_inline)] pub use iter::{DoubleEndedIterator, ExactSizeIterator}; |
| 49 | +#[doc(no_inline)] |
| 50 | +pub use iter::{DoubleEndedIterator, ExactSizeIterator}; |
42 | 51 | #[stable(feature = "core_prelude", since = "1.4.0")] |
43 | | -#[doc(no_inline)] pub use option::Option::{self, Some, None}; |
| 52 | +#[doc(no_inline)] |
| 53 | +pub use option::Option::{self, Some, None}; |
44 | 54 | #[stable(feature = "core_prelude", since = "1.4.0")] |
45 | | -#[doc(no_inline)] pub use result::Result::{self, Ok, Err}; |
| 55 | +#[doc(no_inline)] |
| 56 | +pub use result::Result::{self, Ok, Err}; |
46 | 57 |
|
47 | 58 | // Reexported extension traits for primitive types |
48 | 59 | #[stable(feature = "core_prelude", since = "1.4.0")] |
49 | | -#[doc(no_inline)] pub use slice::SliceExt; |
| 60 | +#[doc(no_inline)] |
| 61 | +pub use slice::SliceExt; |
50 | 62 | #[stable(feature = "core_prelude", since = "1.4.0")] |
51 | | -#[doc(no_inline)] pub use str::StrExt; |
| 63 | +#[doc(no_inline)] |
| 64 | +pub use str::StrExt; |
52 | 65 | #[stable(feature = "core_prelude", since = "1.4.0")] |
53 | | -#[doc(no_inline)] pub use char::CharExt; |
| 66 | +#[doc(no_inline)] |
| 67 | +pub use char::CharExt; |
0 commit comments