Skip to content

Commit 06a0233

Browse files
authored
Rollup merge of #39960 - lukaramu:issue-39925, r=alexcrichton
added Error and Display impl for std::ffi::FromBytesWithNulError Fixes #39925. This is my first PR, so I wasn't quite sure about the stability annotation.
2 parents fda3f98 + 48331ef commit 06a0233

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/libstd/ffi/c_str.rs

+14
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,20 @@ impl From<NulError> for io::Error {
455455
}
456456
}
457457

458+
#[stable(feature = "frombyteswithnulerror_impls", since = "1.17.0")]
459+
impl Error for FromBytesWithNulError {
460+
fn description(&self) -> &str {
461+
"data provided is not null terminated or contains an interior nul byte"
462+
}
463+
}
464+
465+
#[stable(feature = "frombyteswithnulerror_impls", since = "1.17.0")]
466+
impl fmt::Display for FromBytesWithNulError {
467+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
468+
self.description().fmt(f)
469+
}
470+
}
471+
458472
impl IntoStringError {
459473
/// Consumes this error, returning original `CString` which generated the
460474
/// error.

0 commit comments

Comments
 (0)