Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0464f63 commit 1e322e3Copy full SHA for 1e322e3
library/std/src/collections/mod.rs
@@ -401,9 +401,10 @@
401
#![stable(feature = "rust1", since = "1.0.0")]
402
403
#[stable(feature = "rust1", since = "1.0.0")]
404
-#[rustc_deprecated(reason = "moved to `std::ops::Bound`", since = "1.52.0")]
+// FIXME(#82080) The deprecation here is only theoretical, and does not actually produce a warning.
405
+#[rustc_deprecated(reason = "moved to `std::ops::Bound`", since = "1.26.0")]
406
#[doc(hidden)]
-pub type Bound<T> = crate::ops::Bound<T>;
407
+pub use crate::ops::Bound;
408
409
410
pub use alloc_crate::collections::{binary_heap, btree_map, btree_set};
0 commit comments