kvarn_async::prelude::compact_str::core::ffi::c_str

Struct FromBytesWithNulError

source
pub struct FromBytesWithNulError { /* private fields */ }
🔬This is a nightly-only experimental API. (c_str_module)
Expand description

An error indicating that a nul byte was not in the expected position.

The slice used to create a CStr must have one and only one nul byte, positioned at the end.

This error is created by the CStr::from_bytes_with_nul method. See its documentation for more.

§Examples

use std::ffi::{CStr, FromBytesWithNulError};

let _: FromBytesWithNulError = CStr::from_bytes_with_nul(b"f\0oo").unwrap_err();

Trait Implementations§

1.64.0 · source§

impl Clone for