alloc/ffi/c_str.rs
1//! [`CString`] and its related types.
2
3use core::borrow::Borrow;
4use core::ffi::{CStr, c_char};
5use core::num::NonZero;
6use core::slice::memchr;
7use core::str::{self, FromStr, Utf8Error};
8use core::{fmt, mem, ops, ptr, slice};
9
10use crate::borrow::{Cow, ToOwned};
11use crate::boxed::Box;
12use crate::rc::Rc;
13use crate::string::String;
14#[cfg(target_has_atomic = "ptr")]
15use crate::sync::Arc;
16use crate::vec::Vec;
17
18/// A type representing an owned, C-compatible, nul-terminated string with no nul bytes in the
19/// middle.
20///
21/// This type serves the purpose of being able to safely generate a
22/// C-compatible string from a Rust byte slice or vector. An instance of this
23/// type is a static guarantee that the underlying bytes contain no interior 0
24/// bytes ("nul characters") and that the final byte is 0 ("nul terminator").
25///
26/// `CString` is to <code>&[CStr]</code> as [`String`] is to <code>&[str]</code>: the former
27/// in each pair are owned strings; the latter are borrowed
28/// references.
29///
30/// # Creating a `CString`
31///
32/// A `CString` is created from either a byte slice or a byte vector,
33/// or anything that implements <code>[Into]<[Vec]<[u8]>></code> (for
34/// example, you can build a `CString` straight out of a [`String`] or
35/// a <code>&[str]</code>, since both implement that trait).
36/// You can create a `CString` from a literal with `CString::from(c"Text")`.
37///
38/// The [`CString::new`] method will actually check that the provided <code>&[[u8]]</code>
39/// does not have 0 bytes in the middle, and return an error if it
40/// finds one.
41///
42/// # Extracting a raw pointer to the whole C string
43///
44/// `CString` implements an [`as_ptr`][`CStr::as_ptr`] method through the [`Deref`]
45/// trait. This method will give you a `*const c_char` which you can
46/// feed directly to extern functions that expect a nul-terminated
47/// string, like C's `strdup()`. Notice that [`as_ptr`][`CStr::as_ptr`] returns a
48/// read-only pointer; if the C code writes to it, that causes
49/// undefined behavior.
50///
51/// # Extracting a slice of the whole C string
52///
53/// Alternatively, you can obtain a <code>&[[u8]]</code> slice from a
54/// `CString` with the [`CString::as_bytes`] method. Slices produced in this
55/// way do *not* contain the trailing nul terminator. This is useful
56/// when you will be calling an extern function that takes a `*const
57/// u8` argument which is not necessarily nul-terminated, plus another
58/// argument with the length of the string — like C's `strndup()`.
59/// You can of course get the slice's length with its
60/// [`len`][slice::len] method.
61///
62/// If you need a <code>&[[u8]]</code> slice *with* the nul terminator, you
63/// can use [`CString::as_bytes_with_nul`] instead.
64///
65/// Once you have the kind of slice you need (with or without a nul
66/// terminator), you can call the slice's own
67/// [`as_ptr`][slice::as_ptr] method to get a read-only raw pointer to pass to
68/// extern functions. See the documentation for that function for a
69/// discussion on ensuring the lifetime of the raw pointer.
70///
71/// [str]: prim@str "str"
72/// [`Deref`]: ops::Deref
73///
74/// # Examples
75///
76/// ```ignore (extern-declaration)
77/// # fn main() {
78/// use std::ffi::CString;
79/// use std::os::raw::c_char;
80///
81/// extern "C" {
82/// fn my_printer(s: *const c_char);
83/// }
84///
85/// // We are certain that our string doesn't have 0 bytes in the middle,
86/// // so we can .expect()
87/// let c_to_print = CString::new("Hello, world!").expect("we provided a string without NUL bytes, so CString::new should not fail");
88/// unsafe {
89/// my_printer(c_to_print.as_ptr());
90/// }
91/// # }
92/// ```
93///
94/// # Safety
95///
96/// `CString` is intended for working with traditional C-style strings
97/// (a sequence of non-nul bytes terminated by a single nul byte); the
98/// primary use case for these kinds of strings is interoperating with C-like
99/// code. Often you will need to transfer ownership to/from that external
100/// code. It is strongly recommended that you thoroughly read through the
101/// documentation of `CString` before use, as improper ownership management
102/// of `CString` instances can lead to invalid memory accesses, memory leaks,
103/// and other memory errors.
104#[derive(PartialEq, PartialOrd, Eq, Ord, Hash, Clone)]
105#[rustc_diagnostic_item = "cstring_type"]
106#[rustc_insignificant_dtor]
107#[stable(feature = "alloc_c_string", since = "1.64.0")]
108pub struct CString {
109 // Invariant 1: the slice ends with a zero byte and has a length of at least one.
110 // Invariant 2: the slice contains only one zero byte.
111 // Improper usage of unsafe function can break Invariant 2, but not Invariant 1.
112 inner: Box<[u8]>,
113}
114
115/// An error indicating that an interior nul byte was found.
116///
117/// While Rust strings may contain nul bytes in the middle, C strings
118/// can't, as that byte would effectively truncate the string.
119///
120/// This error is created by the [`new`][`CString::new`] method on
121/// [`CString`]. See its documentation for more.
122///
123/// # Examples
124///
125/// ```
126/// use std::ffi::{CString, NulError};
127///
128/// let _: NulError = CString::new(b"f\0oo".to_vec()).unwrap_err();
129/// ```
130#[derive(Clone, PartialEq, Eq, Debug)]
131#[stable(feature = "alloc_c_string", since = "1.64.0")]
132pub struct NulError(usize, Vec<u8>);
133
134#[derive(Clone, PartialEq, Eq, Debug)]
135enum FromBytesWithNulErrorKind {
136 InteriorNul(usize),
137 NotNulTerminated,
138}
139
140/// An error indicating that a nul byte was not in the expected position.
141///
142/// The vector used to create a [`CString`] must have one and only one nul byte,
143/// positioned at the end.
144///
145/// This error is created by the [`CString::from_vec_with_nul`] method.
146/// See its documentation for more.
147///
148/// # Examples
149///
150/// ```
151/// use std::ffi::{CString, FromVecWithNulError};
152///
153/// let _: FromVecWithNulError = CString::from_vec_with_nul(b"f\0oo".to_vec()).unwrap_err();
154/// ```
155#[derive(Clone, PartialEq, Eq, Debug)]
156#[stable(feature = "alloc_c_string", since = "1.64.0")]
157pub struct FromVecWithNulError {
158 error_kind: FromBytesWithNulErrorKind,
159 bytes: Vec<u8>,
160}
161
162#[stable(feature = "cstring_from_vec_with_nul", since = "1.58.0")]
163impl FromVecWithNulError {
164 /// Returns a slice of [`u8`]s bytes that were attempted to convert to a [`CString`].
165 ///
166 /// # Examples
167 ///
168 /// Basic usage:
169 ///
170 /// ```
171 /// use std::ffi::CString;
172 ///
173 /// // Some invalid bytes in a vector
174 /// let bytes = b"f\0oo".to_vec();
175 ///
176 /// let value = CString::from_vec_with_nul(bytes.clone());
177 ///
178 /// assert_eq!(&bytes[..], value.unwrap_err().as_bytes());
179 /// ```
180 #[must_use]
181 #[stable(feature = "cstring_from_vec_with_nul", since = "1.58.0")]
182 pub fn as_bytes(&self) -> &[u8] {
183 &self.bytes[..]
184 }
185
186 /// Returns the bytes that were attempted to convert to a [`CString`].
187 ///
188 /// This method is carefully constructed to avoid allocation. It will
189 /// consume the error, moving out the bytes, so that a copy of the bytes
190 /// does not need to be made.
191 ///
192 /// # Examples
193 ///
194 /// Basic usage:
195 ///
196 /// ```
197 /// use std::ffi::CString;
198 ///
199 /// // Some invalid bytes in a vector
200 /// let bytes = b"f\0oo".to_vec();
201 ///
202 /// let value = CString::from_vec_with_nul(bytes.clone());
203 ///
204 /// assert_eq!(bytes, value.unwrap_err().into_bytes());
205 /// ```
206 #[must_use = "`self` will be dropped if the result is not used"]
207 #[stable(feature = "cstring_from_vec_with_nul", since = "1.58.0")]
208 pub fn into_bytes(self) -> Vec<u8> {
209 self.bytes
210 }
211}
212
213/// An error indicating invalid UTF-8 when converting a [`CString`] into a [`String`].
214///
215/// `CString` is just a wrapper over a buffer of bytes with a nul terminator;
216/// [`CString::into_string`] performs UTF-8 validation on those bytes and may
217/// return this error.
218///
219/// This `struct` is created by [`CString::into_string()`]. See
220/// its documentation for more.
221#[derive(Clone, PartialEq, Eq, Debug)]
222#[stable(feature = "alloc_c_string", since = "1.64.0")]
223pub struct IntoStringError {
224 inner: CString,
225 error: Utf8Error,
226}
227
228impl CString {
229 /// Creates a new C-compatible string from a container of bytes.
230 ///
231 /// This function will consume the provided data and use the
232 /// underlying bytes to construct a new string, ensuring that
233 /// there is a trailing 0 byte. This trailing 0 byte will be
234 /// appended by this function; the provided data should *not*
235 /// contain any 0 bytes in it.
236 ///
237 /// # Examples
238 ///
239 /// ```ignore (extern-declaration)
240 /// use std::ffi::CString;
241 /// use std::os::raw::c_char;
242 ///
243 /// extern "C" { fn puts(s: *const c_char); }
244 ///
245 /// let to_print = CString::new("Hello!").expect("we provided a string without NUL bytes, so CString::new should not fail");
246 /// unsafe {
247 /// puts(to_print.as_ptr());
248 /// }
249 /// ```
250 ///
251 /// # Errors
252 ///
253 /// This function will return an error if the supplied bytes contain an
254 /// internal 0 byte. The [`NulError`] returned will contain the bytes as well as
255 /// the position of the nul byte.
256 #[stable(feature = "rust1", since = "1.0.0")]
257 pub fn new<T: Into<Vec<u8>>>(t: T) -> Result<CString, NulError> {
258 trait SpecNewImpl {
259 fn spec_new_impl(self) -> Result<CString, NulError>;
260 }
261
262 impl<T: Into<Vec<u8>>> SpecNewImpl for T {
263 default fn spec_new_impl(self) -> Result<CString, NulError> {
264 let bytes: Vec<u8> = self.into();
265 match memchr::memchr(0, &bytes) {
266 Some(i) => Err(NulError(i, bytes)),
267 // SAFETY: We ensured there's no null bytes.
268 None => Ok(unsafe { CString::_from_vec_unchecked(bytes) }),
269 }
270 }
271 }
272
273 // Specialization for avoiding reallocation
274 #[inline(always)] // Without that it is not inlined into specializations
275 fn spec_new_impl_bytes(bytes: &[u8]) -> Result<CString, NulError> {
276 // We cannot have such large slice that we would overflow here
277 // but using `checked_add` allows LLVM to assume that capacity never overflows
278 // and generate twice shorter code.
279 // `saturating_add` doesn't help for some reason.
280 let capacity = bytes.len().checked_add(1).unwrap();
281
282 // Allocate before validation to avoid duplication of allocation code.
283 // We still need to allocate and copy memory even if we get an error.
284 let mut buffer = Vec::with_capacity(capacity);
285 buffer.extend(bytes);
286
287 // Check memory of self instead of new buffer.
288 // This allows better optimizations if lto enabled.
289 match memchr::memchr(0, bytes) {
290 Some(i) => Err(NulError(i, buffer)),
291 // SAFETY: We ensured there's no null bytes.
292 None => Ok(unsafe { CString::_from_vec_unchecked(buffer) }),
293 }
294 }
295
296 impl SpecNewImpl for &'_ [u8] {
297 fn spec_new_impl(self) -> Result<CString, NulError> {
298 spec_new_impl_bytes(self)
299 }
300 }
301
302 impl SpecNewImpl for &'_ str {
303 fn spec_new_impl(self) -> Result<CString, NulError> {
304 spec_new_impl_bytes(self.as_bytes())
305 }
306 }
307
308 impl SpecNewImpl for &'_ mut [u8] {
309 fn spec_new_impl(self) -> Result<CString, NulError> {
310 spec_new_impl_bytes(self)
311 }
312 }
313
314 t.spec_new_impl()
315 }
316
317 /// Creates a C-compatible string by consuming a byte vector,
318 /// without checking for interior 0 bytes.
319 ///
320 /// Trailing 0 byte will be appended by this function.
321 ///
322 /// This method is equivalent to [`CString::new`] except that no runtime
323 /// assertion is made that `v` contains no 0 bytes, and it requires an
324 /// actual byte vector, not anything that can be converted to one with Into.
325 ///
326 /// # Safety
327 ///
328 /// The caller must ensure `v` contains no nul bytes in its contents.
329 ///
330 /// # Examples
331 ///
332 /// ```
333 /// use std::ffi::CString;
334 ///
335 /// let raw = b"foo".to_vec();
336 /// unsafe {
337 /// let c_string = CString::from_vec_unchecked(raw);
338 /// }
339 /// ```
340 #[must_use]
341 #[stable(feature = "rust1", since = "1.0.0")]
342 pub unsafe fn from_vec_unchecked(v: Vec<u8>) -> Self {
343 debug_assert!(memchr::memchr(0, &v).is_none());
344 // SAFETY: Upheld by caller.
345 unsafe { Self::_from_vec_unchecked(v) }
346 }
347
348 unsafe fn _from_vec_unchecked(mut v: Vec<u8>) -> Self {
349 v.reserve_exact(1);
350 v.push(0);
351 Self { inner: v.into_boxed_slice() }
352 }
353
354 /// Retakes ownership of a `CString` that was transferred to C via
355 /// [`CString::into_raw`].
356 ///
357 /// Additionally, the length of the string will be recalculated from the pointer.
358 ///
359 /// # Safety
360 ///
361 /// This should only ever be called with a pointer that was earlier
362 /// obtained by calling [`CString::into_raw`], and the memory it points to must not be accessed
363 /// through any other pointer during the lifetime of reconstructed `CString`.
364 /// Other usage (e.g., trying to take ownership of a string that was allocated by foreign code)
365 /// is likely to lead to undefined behavior or allocator corruption.
366 ///
367 /// This function does not validate ownership of the raw pointer's memory.
368 /// A double-free may occur if the function is called twice on the same raw pointer.
369 /// Additionally, the caller must ensure the pointer is not dangling.
370 ///
371 /// It should be noted that the length isn't just "recomputed," but that
372 /// the recomputed length must match the original length from the
373 /// [`CString::into_raw`] call. This means the [`CString::into_raw`]/`from_raw`
374 /// methods should not be used when passing the string to C functions that can
375 /// modify the string's length.
376 ///
377 /// > **Note:** If you need to borrow a string that was allocated by
378 /// > foreign code, use [`CStr`]. If you need to take ownership of
379 /// > a string that was allocated by foreign code, you will need to
380 /// > make your own provisions for freeing it appropriately, likely
381 /// > with the foreign code's API to do that.
382 ///
383 /// # Examples
384 ///
385 /// Creates a `CString`, pass ownership to an `extern` function (via raw pointer), then retake
386 /// ownership with `from_raw`:
387 ///
388 /// ```ignore (extern-declaration)
389 /// use std::ffi::CString;
390 /// use std::os::raw::c_char;
391 ///
392 /// extern "C" {
393 /// fn some_extern_function(s: *mut c_char);
394 /// }
395 ///
396 /// let c_string = CString::from(c"Hello!");
397 /// let raw = c_string.into_raw();
398 /// unsafe {
399 /// some_extern_function(raw);
400 /// let c_string = CString::from_raw(raw);
401 /// }
402 /// ```
403 #[must_use = "call `drop(from_raw(ptr))` if you intend to drop the `CString`"]
404 #[stable(feature = "cstr_memory", since = "1.4.0")]
405 pub unsafe fn from_raw(ptr: *mut c_char) -> CString {
406 // SAFETY: This is called with a pointer that was obtained from a call
407 // to `CString::into_raw` and the length has not been modified. As such,
408 // we know there is a NUL byte (and only one) at the end and that the
409 // information about the size of the allocation is correct on Rust's
410 // side.
411 unsafe {
412 unsafe extern "C" {
413 /// Provided by libc or compiler_builtins.
414 fn strlen(s: *const c_char) -> usize;
415 }
416 let len = strlen(ptr) + 1; // Including the NUL byte
417 let slice = slice::from_raw_parts_mut(ptr, len);
418 CString { inner: Box::from_raw(slice as *mut [c_char] as *mut [u8]) }
419 }
420 }
421
422 /// Consumes the `CString` and transfers ownership of the string to a C caller.
423 ///
424 /// The pointer which this function returns must be returned to Rust and reconstituted using
425 /// [`CString::from_raw`] to be properly deallocated. Specifically, one
426 /// should *not* use the standard C `free()` function to deallocate
427 /// this string.
428 ///
429 /// Failure to call [`CString::from_raw`] will lead to a memory leak.
430 ///
431 /// The C side must **not** modify the length of the string (by writing a
432 /// nul byte somewhere inside the string or removing the final one) before
433 /// it makes it back into Rust using [`CString::from_raw`]. See the safety section
434 /// in [`CString::from_raw`].
435 ///
436 /// # Examples
437 ///
438 /// ```
439 /// use std::ffi::CString;
440 ///
441 /// let c_string = CString::from(c"foo");
442 ///
443 /// let ptr = c_string.into_raw();
444 ///
445 /// unsafe {
446 /// assert_eq!(b'f', *ptr as u8);
447 /// assert_eq!(b'o', *ptr.add(1) as u8);
448 /// assert_eq!(b'o', *ptr.add(2) as u8);
449 /// assert_eq!(b'\0', *ptr.add(3) as u8);
450 ///
451 /// // retake pointer to free memory
452 /// let _ = CString::from_raw(ptr);
453 /// }
454 /// ```
455 #[inline]
456 #[must_use = "`self` will be dropped if the result is not used"]
457 #[stable(feature = "cstr_memory", since = "1.4.0")]
458 pub fn into_raw(self) -> *mut c_char {
459 Box::into_raw(self.into_inner()) as *mut c_char
460 }
461
462 /// Converts the `CString` into a [`String`] if it contains valid UTF-8 data.
463 ///
464 /// On failure, ownership of the original `CString` is returned.
465 ///
466 /// # Examples
467 ///
468 /// ```
469 /// use std::ffi::CString;
470 ///
471 /// let valid_utf8 = vec![b'f', b'o', b'o'];
472 /// let cstring = CString::new(valid_utf8).expect("we provided bytes that do not have a NUL byte, so CString::new should not fail");
473 /// assert_eq!(cstring.into_string().expect("we provided bytes that are valid UTF-8, so `into_string` should not fail"), "foo");
474 ///
475 /// let invalid_utf8 = vec![b'f', 0xff, b'o', b'o'];
476 /// let cstring = CString::new(invalid_utf8).expect("we provided bytes that do not have a NUL byte, so CString::new should not fail");
477 /// let err = cstring.into_string().expect_err("we provided bytes that are invalid UTF-8, so `into_string` should fail");
478 /// assert_eq!(err.utf8_error().valid_up_to(), 1);
479 /// ```
480 #[stable(feature = "cstring_into", since = "1.7.0")]
481 pub fn into_string(self) -> Result<String, IntoStringError> {
482 String::from_utf8(self.into_bytes()).map_err(|e| IntoStringError {
483 error: e.utf8_error(),
484 // SAFETY: `CString`s never contain null bytes.
485 inner: unsafe { Self::_from_vec_unchecked(e.into_bytes()) },
486 })
487 }
488
489 /// Consumes the `CString` and returns the underlying byte buffer.
490 ///
491 /// The returned buffer does **not** contain the trailing nul
492 /// terminator, and it is guaranteed to not have any interior nul
493 /// bytes.
494 ///
495 /// # Examples
496 ///
497 /// ```
498 /// use std::ffi::CString;
499 ///
500 /// let c_string = CString::from(c"foo");
501 /// let bytes = c_string.into_bytes();
502 /// assert_eq!(bytes, vec![b'f', b'o', b'o']);
503 /// ```
504 #[must_use = "`self` will be dropped if the result is not used"]
505 #[stable(feature = "cstring_into", since = "1.7.0")]
506 pub fn into_bytes(self) -> Vec<u8> {
507 let mut vec = self.into_inner().into_vec();
508 let _nul = vec.pop();
509 debug_assert_eq!(_nul, Some(0u8));
510 vec
511 }
512
513 /// Equivalent to [`CString::into_bytes()`] except that the
514 /// returned vector includes the trailing nul terminator.
515 ///
516 /// # Examples
517 ///
518 /// ```
519 /// use std::ffi::CString;
520 ///
521 /// let c_string = CString::from(c"foo");
522 /// let bytes = c_string.into_bytes_with_nul();
523 /// assert_eq!(bytes, vec![b'f', b'o', b'o', b'\0']);
524 /// ```
525 #[must_use = "`self` will be dropped if the result is not used"]
526 #[stable(feature = "cstring_into", since = "1.7.0")]
527 pub fn into_bytes_with_nul(self) -> Vec<u8> {
528 self.into_inner().into_vec()
529 }
530
531 /// Returns the contents of this `CString` as a slice of bytes.
532 ///
533 /// The returned slice does **not** contain the trailing nul
534 /// terminator, and it is guaranteed to not have any interior nul
535 /// bytes. If you need the nul terminator, use
536 /// [`CString::as_bytes_with_nul`] instead.
537 ///
538 /// # Examples
539 ///
540 /// ```
541 /// use std::ffi::CString;
542 ///
543 /// let c_string = CString::from(c"foo");
544 /// let bytes = c_string.as_bytes();
545 /// assert_eq!(bytes, &[b'f', b'o', b'o']);
546 /// ```
547 #[inline]
548 #[must_use]
549 #[stable(feature = "rust1", since = "1.0.0")]
550 pub fn as_bytes(&self) -> &[u8] {
551 // SAFETY: CString has a length at least 1
552 unsafe { self.inner.get_unchecked(..self.inner.len() - 1) }
553 }
554
555 /// Equivalent to [`CString::as_bytes()`] except that the
556 /// returned slice includes the trailing nul terminator.
557 ///
558 /// # Examples
559 ///
560 /// ```
561 /// use std::ffi::CString;
562 ///
563 /// let c_string = CString::from(c"foo");
564 /// let bytes = c_string.as_bytes_with_nul();
565 /// assert_eq!(bytes, &[b'f', b'o', b'o', b'\0']);
566 /// ```
567 #[inline]
568 #[must_use]
569 #[stable(feature = "rust1", since = "1.0.0")]
570 pub fn as_bytes_with_nul(&self) -> &[u8] {
571 &self.inner
572 }
573
574 /// Extracts a [`CStr`] slice containing the entire string.
575 ///
576 /// # Examples
577 ///
578 /// ```
579 /// use std::ffi::{CString, CStr};
580 ///
581 /// let c_string = CString::from(c"foo");
582 /// let cstr = c_string.as_c_str();
583 /// assert_eq!(cstr,
584 /// CStr::from_bytes_with_nul(b"foo\0").expect("we provided bytes that has one NUL byte exactly at the end, so CStr::from_bytes_with_nul should not fail"));
585 /// ```
586 #[inline]
587 #[must_use]
588 #[stable(feature = "as_c_str", since = "1.20.0")]
589 #[rustc_diagnostic_item = "cstring_as_c_str"]
590 pub fn as_c_str(&self) -> &CStr {
591 // SAFETY: Ensured by `as_bytes_with_nul`.
592 unsafe { CStr::from_bytes_with_nul_unchecked(self.as_bytes_with_nul()) }
593 }
594
595 /// Converts this `CString` into a boxed [`CStr`].
596 ///
597 /// # Examples
598 ///
599 /// ```
600 /// let c_string = c"foo".to_owned();
601 /// let boxed = c_string.into_boxed_c_str();
602 /// assert_eq!(boxed.to_bytes_with_nul(), b"foo\0");
603 /// ```
604 #[must_use = "`self` will be dropped if the result is not used"]
605 #[stable(feature = "into_boxed_c_str", since = "1.20.0")]
606 pub fn into_boxed_c_str(self) -> Box<CStr> {
607 // SAFETY: Typecast of [u8] to CStr is valid and we know contents have
608 // no nulls except for the terminating byte.
609 unsafe { Box::from_raw(Box::into_raw(self.into_inner()) as *mut CStr) }
610 }
611
612 /// Bypass "move out of struct which implements [`Drop`] trait" restriction.
613 #[inline]
614 fn into_inner(self) -> Box<[u8]> {
615 let this = mem::ManuallyDrop::new(self);
616 // SAFETY: `mem::forget(self)` invalidates the previous call to `ptr::read(&self.inner)`
617 // so we use `ManuallyDrop` to ensure `self` is not dropped.
618 // Then we can return the box directly without invalidating it.
619 // See https://github.com/rust-lang/rust/issues/62553.
620 unsafe { ptr::read(&this.inner) }
621 }
622
623 /// Converts a <code>[Vec]<[u8]></code> to a [`CString`] without checking the
624 /// invariants on the given [`Vec`].
625 ///
626 /// # Safety
627 ///
628 /// The given [`Vec`] **must** have one nul byte as its last element.
629 /// This means it cannot be empty nor have any other nul byte anywhere else.
630 ///
631 /// # Example
632 ///
633 /// ```
634 /// use std::ffi::CString;
635 /// assert_eq!(
636 /// unsafe { CString::from_vec_with_nul_unchecked(b"abc\0".to_vec()) },
637 /// unsafe { CString::from_vec_unchecked(b"abc".to_vec()) }
638 /// );
639 /// ```
640 #[must_use]
641 #[stable(feature = "cstring_from_vec_with_nul", since = "1.58.0")]
642 pub unsafe fn from_vec_with_nul_unchecked(v: Vec<u8>) -> Self {
643 debug_assert!(memchr::memchr(0, &v).unwrap() + 1 == v.len());
644 // SAFETY: Upheld by caller.
645 unsafe { Self::_from_vec_with_nul_unchecked(v) }
646 }
647
648 unsafe fn _from_vec_with_nul_unchecked(v: Vec<u8>) -> Self {
649 Self { inner: v.into_boxed_slice() }
650 }
651
652 /// Attempts to convert a <code>[Vec]<[u8]></code> to a [`CString`].
653 ///
654 /// Runtime checks are present to ensure there is only one nul byte in the
655 /// [`Vec`], its last element.
656 ///
657 /// # Errors
658 ///
659 /// If a nul byte is present and not the last element or no nul bytes
660 /// is present, an error will be returned.
661 ///
662 /// # Examples
663 ///
664 /// A successful conversion will produce the same result as [`CString::new`]
665 /// when called without the ending nul byte.
666 ///
667 /// ```
668 /// use std::ffi::CString;
669 /// assert_eq!(
670 /// CString::from_vec_with_nul(b"abc\0".to_vec())
671 /// .expect("we provided bytes that has one NUL byte exactly at the end, so CString::from_vec_with_nul should not fail"),
672 /// c"abc".to_owned()
673 /// );
674 /// ```
675 ///
676 /// An incorrectly formatted [`Vec`] will produce an error.
677 ///
678 /// ```
679 /// use std::ffi::{CString, FromVecWithNulError};
680 /// // Interior nul byte
681 /// let _: FromVecWithNulError = CString::from_vec_with_nul(b"a\0bc".to_vec()).unwrap_err();
682 /// // No nul byte
683 /// let _: FromVecWithNulError = CString::from_vec_with_nul(b"abc".to_vec()).unwrap_err();
684 /// ```
685 #[stable(feature = "cstring_from_vec_with_nul", since = "1.58.0")]
686 pub fn from_vec_with_nul(v: Vec<u8>) -> Result<Self, FromVecWithNulError> {
687 let nul_pos = memchr::memchr(0, &v);
688 match nul_pos {
689 Some(nul_pos) if nul_pos + 1 == v.len() => {
690 // SAFETY: We know there is only one nul byte, at the end
691 // of the vec.
692 Ok(unsafe { Self::_from_vec_with_nul_unchecked(v) })
693 }
694 Some(nul_pos) => Err(FromVecWithNulError {
695 error_kind: FromBytesWithNulErrorKind::InteriorNul(nul_pos),
696 bytes: v,
697 }),
698 None => Err(FromVecWithNulError {
699 error_kind: FromBytesWithNulErrorKind::NotNulTerminated,
700 bytes: v,
701 }),
702 }
703 }
704}
705
706// Turns this `CString` into an empty string to prevent
707// memory-unsafe code from working by accident. Inline
708// to prevent LLVM from optimizing it away in debug builds.
709#[stable(feature = "cstring_drop", since = "1.13.0")]
710impl Drop for CString {
711 #[inline]
712 fn drop(&mut self) {
713 // SAFETY: Length is always at least one.
714 unsafe {
715 *self.inner.get_unchecked_mut(0) = 0;
716 }
717 }
718}
719
720#[stable(feature = "rust1", since = "1.0.0")]
721impl ops::Deref for CString {
722 type Target = CStr;
723
724 #[inline]
725 fn deref(&self) -> &CStr {
726 self.as_c_str()
727 }
728}
729
730/// Delegates to the [`CStr`] implementation of [`fmt::Debug`],
731/// showing invalid UTF-8 as hex escapes.
732#[stable(feature = "rust1", since = "1.0.0")]
733impl fmt::Debug for CString {
734 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
735 fmt::Debug::fmt(self.as_c_str(), f)
736 }
737}
738
739#[stable(feature = "cstring_into", since = "1.7.0")]
740impl From<CString> for Vec<u8> {
741 /// Converts a [`CString`] into a <code>[Vec]<[u8]></code>.
742 ///
743 /// The conversion consumes the [`CString`], and removes the terminating NUL byte.
744 #[inline]
745 fn from(s: CString) -> Vec<u8> {
746 s.into_bytes()
747 }
748}
749
750#[stable(feature = "cstr_default", since = "1.10.0")]
751impl Default for CString {
752 /// Creates an empty `CString`.
753 fn default() -> CString {
754 let a: &CStr = Default::default();
755 a.to_owned()
756 }
757}
758
759#[stable(feature = "cstr_borrow", since = "1.3.0")]
760impl Borrow<CStr> for CString {
761 #[inline]
762 fn borrow(&self) -> &CStr {
763 self
764 }
765}
766
767#[stable(feature = "cstring_from_cow_cstr", since = "1.28.0")]
768impl<'a> From<Cow<'a, CStr>> for CString {
769 /// Converts a `Cow<'a, CStr>` into a `CString`, by copying the contents if they are
770 /// borrowed.
771 #[inline]
772 fn from(s: Cow<'a, CStr>) -> Self {
773 s.into_owned()
774 }
775}
776
777#[stable(feature = "box_from_c_str", since = "1.17.0")]
778impl From<&CStr> for Box<CStr> {
779 /// Converts a `&CStr` into a `Box<CStr>`,
780 /// by copying the contents into a newly allocated [`Box`].
781 fn from(s: &CStr) -> Box<CStr> {
782 Box::clone_from_ref(s)
783 }
784}
785
786#[stable(feature = "box_from_mut_slice", since = "1.84.0")]
787impl From<&mut CStr> for Box<CStr> {
788 /// Converts a `&mut CStr` into a `Box<CStr>`,
789 /// by copying the contents into a newly allocated [`Box`].
790 fn from(s: &mut CStr) -> Box<CStr> {
791 Self::from(&*s)
792 }
793}
794
795#[stable(feature = "box_from_cow", since = "1.45.0")]
796impl From<Cow<'_, CStr>> for Box<CStr> {
797 /// Converts a `Cow<'a, CStr>` into a `Box<CStr>`,
798 /// by copying the contents if they are borrowed.
799 #[inline]
800 fn from(cow: Cow<'_, CStr>) -> Box<CStr> {
801 match cow {
802 Cow::Borrowed(s) => Box::from(s),
803 Cow::Owned(s) => Box::from(s),
804 }
805 }
806}
807
808#[stable(feature = "c_string_from_box", since = "1.18.0")]
809impl From<Box<CStr>> for CString {
810 /// Converts a <code>[Box]<[CStr]></code> into a [`CString`] without copying or allocating.
811 #[inline]
812 fn from(s: Box<CStr>) -> CString {
813 let raw = Box::into_raw(s) as *mut [u8];
814 // SAFETY: Converting a *mut CStr -> *mut [u8] -> CString is valid.
815 CString { inner: unsafe { Box::from_raw(raw) } }
816 }
817}
818
819#[stable(feature = "cstring_from_vec_of_nonzerou8", since = "1.43.0")]
820impl From<Vec<NonZero<u8>>> for CString {
821 /// Converts a <code>[Vec]<[NonZero]<[u8]>></code> into a [`CString`] without
822 /// copying nor checking for inner nul bytes.
823 #[inline]
824 fn from(v: Vec<NonZero<u8>>) -> CString {
825 // Transmute `Vec<NonZero<u8>>` to `Vec<u8>`.
826 let v: Vec<u8> = {
827 let (ptr, len, cap): (*mut NonZero<u8>, _, _) = Vec::into_raw_parts(v);
828 // SAFETY:
829 // - transmuting between `NonZero<u8>` and `u8` is sound;
830 // - `alloc::Layout<NonZero<u8>> == alloc::Layout<u8>`.
831 unsafe { Vec::from_raw_parts(ptr.cast::<u8>(), len, cap) }
832 };
833 // SAFETY: `v` cannot contain nul bytes, given the type-level
834 // invariant of `NonZero<u8>`.
835 unsafe { Self::_from_vec_unchecked(v) }
836 }
837}
838
839#[stable(feature = "c_string_from_str", since = "1.85.0")]
840impl FromStr for CString {
841 type Err = NulError;
842
843 /// Converts a string `s` into a [`CString`].
844 ///
845 /// This method is equivalent to [`CString::new`].
846 #[inline]
847 fn from_str(s: &str) -> Result<Self, Self::Err> {
848 Self::new(s)
849 }
850}
851
852#[stable(feature = "c_string_from_str", since = "1.85.0")]
853impl TryFrom<CString> for String {
854 type Error = IntoStringError;
855
856 /// Converts a [`CString`] into a [`String`] if it contains valid UTF-8 data.
857 ///
858 /// This method is equivalent to [`CString::into_string`].
859 #[inline]
860 fn try_from(value: CString) -> Result<Self, Self::Error> {
861 value.into_string()
862 }
863}
864
865#[stable(feature = "more_box_slice_clone", since = "1.29.0")]
866impl Clone for Box<CStr> {
867 #[inline]
868 fn clone(&self) -> Self {
869 (**self).into()
870 }
871}
872
873#[stable(feature = "box_from_c_string", since = "1.20.0")]
874impl From<CString> for Box<CStr> {
875 /// Converts a [`CString`] into a <code>[Box]<[CStr]></code> without copying or allocating.
876 #[inline]
877 fn from(s: CString) -> Box<CStr> {
878 s.into_boxed_c_str()
879 }
880}
881
882#[stable(feature = "cow_from_cstr", since = "1.28.0")]
883impl<'a> From<CString> for Cow<'a, CStr> {
884 /// Converts a [`CString`] into an owned [`Cow`] without copying or allocating.
885 #[inline]
886 fn from(s: CString) -> Cow<'a, CStr> {
887 Cow::Owned(s)
888 }
889}
890
891#[stable(feature = "cow_from_cstr", since = "1.28.0")]
892impl<'a> From<&'a CStr> for Cow<'a, CStr> {
893 /// Converts a [`CStr`] into a borrowed [`Cow`] without copying or allocating.
894 #[inline]
895 fn from(s: &'a CStr) -> Cow<'a, CStr> {
896 Cow::Borrowed(s)
897 }
898}
899
900#[stable(feature = "cow_from_cstr", since = "1.28.0")]
901impl<'a> From<&'a CString> for Cow<'a, CStr> {
902 /// Converts a `&`[`CString`] into a borrowed [`Cow`] without copying or allocating.
903 #[inline]
904 fn from(s: &'a CString) -> Cow<'a, CStr> {
905 Cow::Borrowed(s.as_c_str())
906 }
907}
908
909#[cfg(target_has_atomic = "ptr")]
910#[stable(feature = "shared_from_slice2", since = "1.24.0")]
911impl From<CString> for Arc<CStr> {
912 /// Converts a [`CString`] into an <code>[Arc]<[CStr]></code> by moving the [`CString`]
913 /// data into a new [`Arc`] buffer.
914 #[inline]
915 fn from(s: CString) -> Arc<CStr> {
916 let arc: Arc<[u8]> = Arc::from(s.into_inner());
917 // SAFETY: Type conversion is valid.
918 unsafe { Arc::from_raw(Arc::into_raw(arc) as *const CStr) }
919 }
920}
921
922#[cfg(target_has_atomic = "ptr")]
923#[stable(feature = "shared_from_slice2", since = "1.24.0")]
924impl From<&CStr> for Arc<CStr> {
925 /// Converts a `&CStr` into a `Arc<CStr>`,
926 /// by copying the contents into a newly allocated [`Arc`].
927 #[inline]
928 fn from(s: &CStr) -> Arc<CStr> {
929 let arc: Arc<[u8]> = Arc::from(s.to_bytes_with_nul());
930 // SAFETY: Type conversion is valid.
931 unsafe { Arc::from_raw(Arc::into_raw(arc) as *const CStr) }
932 }
933}
934
935#[cfg(target_has_atomic = "ptr")]
936#[stable(feature = "shared_from_mut_slice", since = "1.84.0")]
937impl From<&mut CStr> for Arc<CStr> {
938 /// Converts a `&mut CStr` into a `Arc<CStr>`,
939 /// by copying the contents into a newly allocated [`Arc`].
940 #[inline]
941 fn from(s: &mut CStr) -> Arc<CStr> {
942 Arc::from(&*s)
943 }
944}
945
946#[stable(feature = "shared_from_slice2", since = "1.24.0")]
947impl From<CString> for Rc<CStr> {
948 /// Converts a [`CString`] into an <code>[Rc]<[CStr]></code> by moving the [`CString`]
949 /// data into a new [`Rc`] buffer.
950 #[inline]
951 fn from(s: CString) -> Rc<CStr> {
952 let rc: Rc<[u8]> = Rc::from(s.into_inner());
953 // SAFETY: Type conversion is valid.
954 unsafe { Rc::from_raw(Rc::into_raw(rc) as *const CStr) }
955 }
956}
957
958#[stable(feature = "shared_from_slice2", since = "1.24.0")]
959impl From<&CStr> for Rc<CStr> {
960 /// Converts a `&CStr` into a `Rc<CStr>`,
961 /// by copying the contents into a newly allocated [`Rc`].
962 #[inline]
963 fn from(s: &CStr) -> Rc<CStr> {
964 let rc: Rc<[u8]> = Rc::from(s.to_bytes_with_nul());
965 // SAFETY: Type conversion is valid.
966 unsafe { Rc::from_raw(Rc::into_raw(rc) as *const CStr) }
967 }
968}
969
970#[stable(feature = "shared_from_mut_slice", since = "1.84.0")]
971impl From<&mut CStr> for Rc<CStr> {
972 /// Converts a `&mut CStr` into a `Rc<CStr>`,
973 /// by copying the contents into a newly allocated [`Rc`].
974 #[inline]
975 fn from(s: &mut CStr) -> Rc<CStr> {
976 Rc::from(&*s)
977 }
978}
979
980#[cfg(not(no_global_oom_handling))]
981#[stable(feature = "more_rc_default_impls", since = "1.80.0")]
982impl Default for Rc<CStr> {
983 /// Creates an empty CStr inside an Rc
984 ///
985 /// This may or may not share an allocation with other Rcs on the same thread.
986 #[inline]
987 fn default() -> Self {
988 Rc::from(c"")
989 }
990}
991
992#[stable(feature = "default_box_extra", since = "1.17.0")]
993impl Default for Box<CStr> {
994 fn default() -> Box<CStr> {
995 Box::from(c"")
996 }
997}
998
999impl NulError {
1000 /// Returns the position of the nul byte in the slice that caused
1001 /// [`CString::new`] to fail.
1002 ///
1003 /// # Examples
1004 ///
1005 /// ```
1006 /// use std::ffi::CString;
1007 ///
1008 /// let nul_error = CString::new("foo\0bar").unwrap_err();
1009 /// assert_eq!(nul_error.nul_position(), 3);
1010 ///
1011 /// let nul_error = CString::new("foo bar\0").unwrap_err();
1012 /// assert_eq!(nul_error.nul_position(), 7);
1013 /// ```
1014 #[must_use]
1015 #[stable(feature = "rust1", since = "1.0.0")]
1016 pub fn nul_position(&self) -> usize {
1017 self.0
1018 }
1019
1020 /// Consumes this error, returning the underlying vector of bytes which
1021 /// generated the error in the first place.
1022 ///
1023 /// # Examples
1024 ///
1025 /// ```
1026 /// use std::ffi::CString;
1027 ///
1028 /// let nul_error = CString::new("foo\0bar").unwrap_err();
1029 /// assert_eq!(nul_error.into_vec(), b"foo\0bar");
1030 /// ```
1031 #[must_use = "`self` will be dropped if the result is not used"]
1032 #[stable(feature = "rust1", since = "1.0.0")]
1033 pub fn into_vec(self) -> Vec<u8> {
1034 self.1
1035 }
1036}
1037
1038#[stable(feature = "rust1", since = "1.0.0")]
1039impl fmt::Display for NulError {
1040 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1041 write!(f, "nul byte found in provided data at position: {}", self.0)
1042 }
1043}
1044
1045#[stable(feature = "cstring_from_vec_with_nul", since = "1.58.0")]
1046impl fmt::Display for FromVecWithNulError {
1047 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1048 match self.error_kind {
1049 FromBytesWithNulErrorKind::InteriorNul(pos) => {
1050 write!(f, "data provided contains an interior nul byte at pos {pos}")
1051 }
1052 FromBytesWithNulErrorKind::NotNulTerminated => {
1053 write!(f, "data provided is not nul terminated")
1054 }
1055 }
1056 }
1057}
1058
1059impl IntoStringError {
1060 /// Consumes this error, returning original [`CString`] which generated the
1061 /// error.
1062 #[must_use = "`self` will be dropped if the result is not used"]
1063 #[stable(feature = "cstring_into", since = "1.7.0")]
1064 pub fn into_cstring(self) -> CString {
1065 self.inner
1066 }
1067
1068 /// Access the underlying UTF-8 error that was the cause of this error.
1069 #[must_use]
1070 #[stable(feature = "cstring_into", since = "1.7.0")]
1071 pub fn utf8_error(&self) -> Utf8Error {
1072 self.error
1073 }
1074}
1075
1076#[stable(feature = "cstring_into", since = "1.7.0")]
1077impl fmt::Display for IntoStringError {
1078 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1079 "C string contained non-utf8 bytes".fmt(f)
1080 }
1081}
1082
1083#[stable(feature = "cstr_borrow", since = "1.3.0")]
1084impl ToOwned for CStr {
1085 type Owned = CString;
1086
1087 fn to_owned(&self) -> CString {
1088 CString { inner: self.to_bytes_with_nul().into() }
1089 }
1090
1091 fn clone_into(&self, target: &mut CString) {
1092 let src = self.to_bytes_with_nul();
1093 // If the lengths match, we can reuse the existing allocation without any overhead.
1094 if target.inner.len() == src.len() {
1095 target.inner.copy_from_slice(src);
1096 } else {
1097 // Reuse the existing allocation's capacity by converting to a Vec.
1098 // We temporarily replace `target` with a valid dummy to remain panic-safe.
1099 let mut b = mem::replace(&mut target.inner, Box::new([0])).into_vec();
1100 self.to_bytes_with_nul().clone_into(&mut b);
1101 target.inner = b.into_boxed_slice();
1102 }
1103 }
1104}
1105
1106#[stable(feature = "cstring_asref", since = "1.7.0")]
1107impl From<&CStr> for CString {
1108 /// Converts a <code>&[CStr]</code> into a [`CString`]
1109 /// by copying the contents into a new allocation.
1110 fn from(s: &CStr) -> CString {
1111 s.to_owned()
1112 }
1113}
1114
1115#[stable(feature = "c_string_eq_c_str", since = "1.90.0")]
1116impl PartialEq<CStr> for CString {
1117 #[inline]
1118 fn eq(&self, other: &CStr) -> bool {
1119 **self == *other
1120 }
1121
1122 #[inline]
1123 fn ne(&self, other: &CStr) -> bool {
1124 **self != *other
1125 }
1126}
1127
1128#[stable(feature = "c_string_eq_c_str", since = "1.90.0")]
1129impl PartialEq<&CStr> for CString {
1130 #[inline]
1131 fn eq(&self, other: &&CStr) -> bool {
1132 **self == **other
1133 }
1134
1135 #[inline]
1136 fn ne(&self, other: &&CStr) -> bool {
1137 **self != **other
1138 }
1139}
1140
1141#[cfg(not(no_global_oom_handling))]
1142#[stable(feature = "c_string_eq_c_str", since = "1.90.0")]
1143impl PartialEq<Cow<'_, CStr>> for CString {
1144 #[inline]
1145 fn eq(&self, other: &Cow<'_, CStr>) -> bool {
1146 **self == **other
1147 }
1148
1149 #[inline]
1150 fn ne(&self, other: &Cow<'_, CStr>) -> bool {
1151 **self != **other
1152 }
1153}
1154
1155#[stable(feature = "cstring_asref", since = "1.7.0")]
1156impl ops::Index<ops::RangeFull> for CString {
1157 type Output = CStr;
1158
1159 #[inline]
1160 fn index(&self, _index: ops::RangeFull) -> &CStr {
1161 self
1162 }
1163}
1164
1165#[stable(feature = "cstring_asref", since = "1.7.0")]
1166impl AsRef<CStr> for CString {
1167 #[inline]
1168 fn as_ref(&self) -> &CStr {
1169 self
1170 }
1171}
1172
1173impl CStr {
1174 /// Converts a `CStr` into a <code>[Cow]<[str]></code>.
1175 ///
1176 /// If the contents of the `CStr` are valid UTF-8 data, this
1177 /// function will return a <code>[Cow]::[Borrowed]\(&[str])</code>
1178 /// with the corresponding <code>&[str]</code> slice. Otherwise, it will
1179 /// replace any invalid UTF-8 sequences with
1180 /// [`U+FFFD REPLACEMENT CHARACTER`][U+FFFD] and return a
1181 /// <code>[Cow]::[Owned]\([String])</code> with the result.
1182 ///
1183 /// [str]: prim@str "str"
1184 /// [Borrowed]: Cow::Borrowed
1185 /// [Owned]: Cow::Owned
1186 /// [U+FFFD]: char::REPLACEMENT_CHARACTER
1187 ///
1188 /// # Examples
1189 ///
1190 /// Calling `to_string_lossy` on a `CStr` containing valid UTF-8. The leading
1191 /// `c` on the string literal denotes a `CStr`.
1192 ///
1193 /// ```
1194 /// use std::borrow::Cow;
1195 ///
1196 /// assert_eq!(c"Hello World".to_string_lossy(), Cow::Borrowed("Hello World"));
1197 /// ```
1198 ///
1199 /// Calling `to_string_lossy` on a `CStr` containing invalid UTF-8:
1200 ///
1201 /// ```
1202 /// use std::borrow::Cow;
1203 ///
1204 /// assert_eq!(
1205 /// c"Hello \xF0\x90\x80World".to_string_lossy(),
1206 /// Cow::Owned(String::from("Hello �World")) as Cow<'_, str>
1207 /// );
1208 /// ```
1209 #[rustc_allow_incoherent_impl]
1210 #[must_use = "this returns the result of the operation, \
1211 without modifying the original"]
1212 #[stable(feature = "cstr_to_str", since = "1.4.0")]
1213 pub fn to_string_lossy(&self) -> Cow<'_, str> {
1214 String::from_utf8_lossy(self.to_bytes())
1215 }
1216
1217 /// Converts a <code>[Box]<[CStr]></code> into a [`CString`] without copying or allocating.
1218 ///
1219 /// # Examples
1220 ///
1221 /// ```
1222 /// use std::ffi::{CStr, CString};
1223 ///
1224 /// let boxed: Box<CStr> = Box::from(c"foo");
1225 /// let c_string: CString = c"foo".to_owned();
1226 ///
1227 /// assert_eq!(boxed.into_c_string(), c_string);
1228 /// ```
1229 #[rustc_allow_incoherent_impl]
1230 #[must_use = "`self` will be dropped if the result is not used"]
1231 #[stable(feature = "into_boxed_c_str", since = "1.20.0")]
1232 pub fn into_c_string(self: Box<Self>) -> CString {
1233 CString::from(self)
1234 }
1235}
1236
1237#[stable(feature = "c_string_eq_c_str", since = "1.90.0")]
1238impl PartialEq<CString> for CStr {
1239 #[inline]
1240 fn eq(&self, other: &CString) -> bool {
1241 *self == **other
1242 }
1243
1244 #[inline]
1245 fn ne(&self, other: &CString) -> bool {
1246 *self != **other
1247 }
1248}
1249
1250#[cfg(not(no_global_oom_handling))]
1251#[stable(feature = "c_string_eq_c_str", since = "1.90.0")]
1252impl PartialEq<Cow<'_, Self>> for CStr {
1253 #[inline]
1254 fn eq(&self, other: &Cow<'_, Self>) -> bool {
1255 *self == **other
1256 }
1257
1258 #[inline]
1259 fn ne(&self, other: &Cow<'_, Self>) -> bool {
1260 *self != **other
1261 }
1262}
1263
1264#[cfg(not(no_global_oom_handling))]
1265#[stable(feature = "c_string_eq_c_str", since = "1.90.0")]
1266impl PartialEq<CStr> for Cow<'_, CStr> {
1267 #[inline]
1268 fn eq(&self, other: &CStr) -> bool {
1269 **self == *other
1270 }
1271
1272 #[inline]
1273 fn ne(&self, other: &CStr) -> bool {
1274 **self != *other
1275 }
1276}
1277
1278#[cfg(not(no_global_oom_handling))]
1279#[stable(feature = "c_string_eq_c_str", since = "1.90.0")]
1280impl PartialEq<&CStr> for Cow<'_, CStr> {
1281 #[inline]
1282 fn eq(&self, other: &&CStr) -> bool {
1283 **self == **other
1284 }
1285
1286 #[inline]
1287 fn ne(&self, other: &&CStr) -> bool {
1288 **self != **other
1289 }
1290}
1291
1292#[cfg(not(no_global_oom_handling))]
1293#[stable(feature = "c_string_eq_c_str", since = "1.90.0")]
1294impl PartialEq<CString> for Cow<'_, CStr> {
1295 #[inline]
1296 fn eq(&self, other: &CString) -> bool {
1297 **self == **other
1298 }
1299
1300 #[inline]
1301 fn ne(&self, other: &CString) -> bool {
1302 **self != **other
1303 }
1304}
1305
1306#[stable(feature = "rust1", since = "1.0.0")]
1307impl core::error::Error for NulError {}
1308
1309#[stable(feature = "cstring_from_vec_with_nul", since = "1.58.0")]
1310impl core::error::Error for FromVecWithNulError {}
1311
1312#[stable(feature = "cstring_into", since = "1.7.0")]
1313impl core::error::Error for IntoStringError {
1314 fn source(&self) -> Option<&(dyn core::error::Error + 'static)> {
1315 Some(&self.error)
1316 }
1317}