We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b5f9017 + 2cde493 commit aeb625aCopy full SHA for aeb625a
src/liballoc/string.rs
@@ -2518,3 +2518,11 @@ impl DoubleEndedIterator for Drain<'_> {
2518
2519
#[stable(feature = "fused", since = "1.26.0")]
2520
impl FusedIterator for Drain<'_> {}
2521
+
2522
+#[stable(feature = "from_char_for_string", since = "1.46.0")]
2523
+impl From<char> for String {
2524
+ #[inline]
2525
+ fn from(c: char) -> Self {
2526
+ c.to_string()
2527
+ }
2528
+}
src/liballoc/tests/string.rs
@@ -714,3 +714,10 @@ fn test_try_reserve_exact() {
714
}
715
716
717
718
+#[test]
719
+fn test_from_char() {
720
+ assert_eq!(String::from('a'), 'a'.to_string());
721
+ let s: String = 'x'.into();
722
+ assert_eq!(s, 'x'.to_string());
723
0 commit comments