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