當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Rust CStr.from_bytes_with_nul_unchecked用法及代碼示例

本文簡要介紹rust語言中 std::ffi::CStr.from_bytes_with_nul_unchecked 的用法。

用法

pub unsafe fn from_bytes_with_nul_unchecked(bytes: &[u8]) -> &CStr

不安全地從字節切片創建 C 字符串包裝器。

該函數將投射提供的bytes到一個CStr包裝器而不執行任何健全性檢查。提供的切片必須為 nul-terminated 並且不包含任何內部 nul 字節。

例子

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

unsafe {
    let cstring = CString::new("hello").expect("CString::new failed");
    let cstr = CStr::from_bytes_with_nul_unchecked(cstring.to_bytes_with_nul());
    assert_eq!(cstr, &*cstring);
}

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::ffi::CStr.from_bytes_with_nul_unchecked。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。