Skip to content

Commit 1695b0a

Browse files
authored
Rollup merge of rust-lang#130608 - YohDeadfall:cstr-from-into-str, r=workingjubilee
Implemented `FromStr` for `CString` and `TryFrom<CString>` for `String` The motivation of this change is making it possible to use `CString` in generic methods with `FromStr` and `TryInto<String>` trait bounds. The same traits are already implemented for `OsString` which is an FFI type too.
2 parents ecb3830 + bf40ab2 commit 1695b0a

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

alloc/src/ffi/c_str.rs

+25-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use core::borrow::Borrow;
77
use core::ffi::{CStr, c_char};
88
use core::num::NonZero;
99
use core::slice::memchr;
10-
use core::str::{self, Utf8Error};
10+
use core::str::{self, FromStr, Utf8Error};
1111
use core::{fmt, mem, ops, ptr, slice};
1212

1313
use crate::borrow::{Cow, ToOwned};
@@ -817,6 +817,30 @@ impl From<Vec<NonZero<u8>>> for CString {
817817
}
818818
}
819819

820+
impl FromStr for CString {
821+
type Err = NulError;
822+
823+
/// Converts a string `s` into a [`CString`].
824+
///
825+
/// This method is equivalent to [`CString::new`].
826+
#[inline]
827+
fn from_str(s: &str) -> Result<Self, Self::Err> {
828+
Self::new(s)
829+
}
830+
}
831+
832+
impl TryFrom<CString> for String {
833+
type Error = IntoStringError;
834+
835+
/// Converts a [`CString`] into a [`String`] if it contains valid UTF-8 data.
836+
///
837+
/// This method is equivalent to [`CString::into_string`].
838+
#[inline]
839+
fn try_from(value: CString) -> Result<Self, Self::Error> {
840+
value.into_string()
841+
}
842+
}
843+
820844
#[cfg(not(test))]
821845
#[stable(feature = "more_box_slice_clone", since = "1.29.0")]
822846
impl Clone for Box<CStr> {

0 commit comments

Comments
 (0)