Struct std::ffi::FromVecWithNulError[][src]

pub struct FromVecWithNulError { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (cstring_from_vec_with_nul #73179)
Expand description

指示 nul 字节不在预期位置中的错误。

用于创建 CString 的 vector 的末尾必须只有一个 nul 字节。

此错误是由 CString::from_vec_with_nul 方法创建的。 有关更多信息,请参见其文档。

Examples

#![feature(cstring_from_vec_with_nul)]
use std::ffi::{CString, FromVecWithNulError};

let _: FromVecWithNulError = CString::from_vec_with_nul(b"f\0oo".to_vec()).unwrap_err();
Run

Implementations

🔬 This is a nightly-only experimental API. (cstring_from_vec_with_nul #73179)

返回试图转换为 CStringu8 个字节的片段。

Examples

基本用法:

#![feature(cstring_from_vec_with_nul)]
use std::ffi::CString;

// vector 中的一些无效字节
let bytes = b"f\0oo".to_vec();

let value = CString::from_vec_with_nul(bytes.clone());

assert_eq!(&bytes[..], value.unwrap_err().as_bytes());
Run
🔬 This is a nightly-only experimental API. (cstring_from_vec_with_nul #73179)

返回尝试转换为 CString 的字节。

精心构造此方法以避免分配。 它将消耗错误,将字节移出,因此不需要制作字节的副本。

Examples

基本用法:

#![feature(cstring_from_vec_with_nul)]
use std::ffi::CString;

// vector 中的一些无效字节
let bytes = b"f\0oo".to_vec();

let value = CString::from_vec_with_nul(bytes.clone());

assert_eq!(bytes, value.unwrap_err().into_bytes());
Run

Trait Implementations

返回值的副本。 Read more

source 执行复制分配。 Read more

使用给定的格式化程序格式化该值。 Read more

使用给定的格式化程序格式化该值。 Read more

此错误的下级来源 (如果有)。 Read more

🔬 This is a nightly-only experimental API. (backtrace #53487)

返回发生错误的栈回溯 (如果有)。 Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

此方法测试 selfother 值是否相等,并由 == 使用。 Read more

此方法测试 !=

Auto Trait Implementations

Blanket Implementations

获取 selfTypeIdRead more

从拥有的值中一成不变地借用。 Read more

从拥有的值中借用。 Read more

执行转换。

执行转换。

获得所有权后的结果类型。

通常通过克隆从借用数据中创建拥有的数据。 Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into #41263)

recently added

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more

将给定值转换为 StringRead more

发生转换错误时返回的类型。

执行转换。

发生转换错误时返回的类型。

执行转换。