File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 34
34
//! To use this feature add `features = ["union"]` in the `smallvec` section of Cargo.toml.
35
35
//! Note that this feature requires a nightly compiler (for now).
36
36
//!
37
+ //! Tracking issue: [rust-lang/rust#55149](https://github.com/rust-lang/rust/issues/55149)
38
+ //!
37
39
//! ### `const_generics`
38
40
//!
39
41
//! **This feature is unstable and requires a nightly build of the Rust toolchain.**
40
42
//!
41
43
//! When this feature is enabled, `SmallVec` works with any arrays of any size, not just a fixed
42
44
//! list of sizes.
43
45
//!
46
+ //! Tracking issue: [rust-lang/rust#44580](https://github.com/rust-lang/rust/issues/44580)
47
+ //!
44
48
//! ### `specialization`
45
49
//!
46
50
//! **This feature is unstable and requires a nightly build of the Rust toolchain.**
49
53
//! of `Copy` types. (Without this feature, you can use `SmallVec::from_slice` to get optimal
50
54
//! performance for `Copy` types.)
51
55
//!
56
+ //! Tracking issue: [rust-lang/rust#31844](https://github.com/rust-lang/rust/issues/31844)
57
+ //!
52
58
//! ### `may_dangle`
53
59
//!
54
60
//! **This feature is unstable and requires a nightly build of the Rust toolchain.**
55
61
//!
56
62
//! This feature makes the Rust compiler less strict about use of vectors that contain borrowed
57
63
//! references. For details, see the
58
64
//! [Rustonomicon](https://doc.rust-lang.org/1.42.0/nomicon/dropck.html#an-escape-hatch).
65
+ //!
66
+ //! Tracking issue: [rust-lang/rust#34761](https://github.com/rust-lang/rust/issues/34761)
59
67
60
68
#![ no_std]
61
69
#![ cfg_attr( feature = "union" , feature( untagged_unions) ) ]
You can’t perform that action at this time.
0 commit comments