本文簡要介紹rust語言中 Struct std::string::FromUtf8Error
的用法。
用法
pub struct FromUtf8Error { /* fields omitted */ }
從 UTF-8 字節向量轉換 String
時可能出現的錯誤值。
此類型是 String
上的 from_utf8
方法的錯誤類型。它的設計方式是為了小心地避免重新分配: into_bytes
方法將返回在轉換嘗試中使用的字節向量。
std::str
提供的 Utf8Error
類型表示將 u8
的切片轉換為 &str
時可能發生的錯誤。從這個意義上說,它類似於 FromUtf8Error
,您可以通過 utf8_error
方法從 FromUtf8Error
獲得一個。
例子
基本用法:
// some invalid bytes, in a vector
let bytes = vec![0, 159];
let value = String::from_utf8(bytes);
assert!(value.is_err());
assert_eq!(vec![0, 159], value.unwrap_err().into_bytes());
相關用法
- Rust FromUtf8Error.as_bytes用法及代碼示例
- Rust FromUtf8Error.into_bytes用法及代碼示例
- Rust FromUtf8Error用法及代碼示例
- Rust FromUtf8Error.utf8_error用法及代碼示例
- Rust FromUtf16Error用法及代碼示例
- Rust FromVecWithNulError.into_bytes用法及代碼示例
- Rust FromBytesWithNulError用法及代碼示例
- Rust FromResidual.from_residual用法及代碼示例
- Rust From用法及代碼示例
- Rust FromSecsError用法及代碼示例
- Rust FromVecWithNulError用法及代碼示例
- Rust FromRawFd.from_raw_fd用法及代碼示例
- Rust FromIterator用法及代碼示例
- Rust FromStr.from_str用法及代碼示例
- Rust FromStr用法及代碼示例
- Rust FromVecWithNulError.as_bytes用法及代碼示例
- Rust FromIterator.from_iter用法及代碼示例
- Rust Formatter.precision用法及代碼示例
- Rust Formatter.debug_list用法及代碼示例
- Rust Formatter.sign_minus用法及代碼示例
- Rust File用法及代碼示例
- Rust FileExt.read_exact_at用法及代碼示例
- Rust FileTypeExt.is_char_device用法及代碼示例
- Rust File.open用法及代碼示例
- Rust File.sync_data用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Struct std::string::FromUtf8Error。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。