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


Rust FromUtf8Error.utf8_error用法及代碼示例


本文簡要介紹rust語言中 std::string::FromUtf8Error.utf8_error 的用法。

用法

pub fn utf8_error(&self) -> Utf8Error

獲取 Utf8Error 以獲取有關轉換失敗的更多詳細信息。

std::str 提供的 Utf8Error 類型表示將 u8 的切片轉換為 &str 時可能發生的錯誤。從這個意義上說,它類似於 FromUtf8Error 。有關使用它的更多詳細信息,請參閱其文檔。

例子

基本用法:

// some invalid bytes, in a vector
let bytes = vec![0, 159];

let error = String::from_utf8(bytes).unwrap_err().utf8_error();

// the first byte is invalid here
assert_eq!(1, error.valid_up_to());

相關用法


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