1
+ //! [`CStr`] and its related types.
2
+
1
3
use crate :: cmp:: Ordering ;
2
4
use crate :: error:: Error ;
3
5
use crate :: ffi:: c_char;
@@ -8,15 +10,20 @@ use crate::slice;
8
10
use crate :: slice:: memchr;
9
11
use crate :: str;
10
12
13
+ // FIXME: because this is doc(inline)d, we *have* to use intra-doc links because the actual link
14
+ // depends on where the item is being documented. however, since this is libcore, we can't
15
+ // actually reference libstd or liballoc in intra-doc links. so, the best we can do is remove the
16
+ // links to `CString` and `String` for now until a solution is developed
17
+
11
18
/// Representation of a borrowed C string.
12
19
///
13
20
/// This type represents a borrowed reference to a nul-terminated
14
21
/// array of bytes. It can be constructed safely from a <code>&[[u8]]</code>
15
22
/// slice, or unsafely from a raw `*const c_char`. It can then be
16
23
/// converted to a Rust <code>&[str]</code> by performing UTF-8 validation, or
17
- /// into an owned [ `CString`] .
24
+ /// into an owned `CString`.
18
25
///
19
- /// `&CStr` is to [ `CString`] as <code>&[str]</code> is to [ `String`] : the former
26
+ /// `&CStr` is to `CString` as <code>&[str]</code> is to `String`: the former
20
27
/// in each pair are borrowed references; the latter are owned
21
28
/// strings.
22
29
///
@@ -25,9 +32,6 @@ use crate::str;
25
32
/// Instead, safe wrappers of FFI functions may leverage the unsafe [`CStr::from_ptr`] constructor
26
33
/// to provide a safe interface to other consumers.
27
34
///
28
- /// [`CString`]: ../../std/ffi/struct.CString.html
29
- /// [`String`]: ../../std/string/struct.String.html
30
- ///
31
35
/// # Examples
32
36
///
33
37
/// Inspecting a foreign C string:
@@ -124,10 +128,13 @@ enum FromBytesWithNulErrorKind {
124
128
NotNulTerminated ,
125
129
}
126
130
131
+ // FIXME: const stability attributes should not be required here, I think
127
132
impl FromBytesWithNulError {
133
+ #[ rustc_const_stable( feature = "const_cstr_methods" , since = "1.72.0" ) ]
128
134
const fn interior_nul ( pos : usize ) -> FromBytesWithNulError {
129
135
FromBytesWithNulError { kind : FromBytesWithNulErrorKind :: InteriorNul ( pos) }
130
136
}
137
+ #[ rustc_const_stable( feature = "const_cstr_methods" , since = "1.72.0" ) ]
131
138
const fn not_nul_terminated ( ) -> FromBytesWithNulError {
132
139
FromBytesWithNulError { kind : FromBytesWithNulErrorKind :: NotNulTerminated }
133
140
}
0 commit comments