kvarn::prelude::utils::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 _: F