Struct std::ffi::FromBytesWithNulError 1.10.0[−][src]
pub struct FromBytesWithNulError { /* fields omitted */ }
Expand description
指示 nul 字节不在预期位置中的错误。
用于创建 CStr
的切片必须位于末尾且只有一个 nul 字节。
此错误是由 CStr::from_bytes_with_nul
方法创建的。
有关更多信息,请参见其文档。
Examples
use std::ffi::{CStr, FromBytesWithNulError}; let _: FromBytesWithNulError = CStr::from_bytes_with_nul(b"f\0oo").unwrap_err();Run
Trait Implementations
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
此方法测试 self
和 other
值是否相等,并由 ==
使用。 Read more
此方法测试 !=
。