Skip to content

Commit ebd1467

Browse files
committed
Extend const_convert for Cow on From<&str> and From<String>
These implementations are trivially const - since they only create the enum structure without running any non-const code. const_convert is tracked by rust-lang#88674
1 parent dc2d232 commit ebd1467

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

library/alloc/src/string.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -2701,7 +2701,8 @@ impl<'a> From<Cow<'a, str>> for String {
27012701

27022702
#[cfg(not(no_global_oom_handling))]
27032703
#[stable(feature = "rust1", since = "1.0.0")]
2704-
impl<'a> From<&'a str> for Cow<'a, str> {
2704+
#[rustc_const_unstable(feature = "const_convert", issue = "88674")]
2705+
impl<'a> const From<&'a str> for Cow<'a, str> {
27052706
/// Converts a string slice into a [`Borrowed`] variant.
27062707
/// No heap allocation is performed, and the string
27072708
/// is not copied.
@@ -2722,7 +2723,8 @@ impl<'a> From<&'a str> for Cow<'a, str> {
27222723

27232724
#[cfg(not(no_global_oom_handling))]
27242725
#[stable(feature = "rust1", since = "1.0.0")]
2725-
impl<'a> From<String> for Cow<'a, str> {
2726+
#[rustc_const_unstable(feature = "const_convert", issue = "88674")]
2727+
impl<'a> const From<String> for Cow<'a, str> {
27262728
/// Converts a [`String`] into an [`Owned`] variant.
27272729
/// No heap allocation is performed, and the string
27282730
/// is not copied.

0 commit comments

Comments
 (0)