本文简要介绍rust语言中 alloc::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 FromUtf8Error.as_bytes用法及代码示例
- Rust FromUtf8Error.into_bytes用法及代码示例
- Rust FromUtf8Error用法及代码示例
- 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 Formatter.write_fmt用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 alloc::string::FromUtf8Error.utf8_error。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。