本文簡要介紹rust語言中 std::string::Drain.as_str
的用法。
用法
pub fn as_str(&self) -> &str
將此迭代器的剩餘(子)字符串作為切片返回。
例子
let mut s = String::from("abc");
let mut drain = s.drain(..);
assert_eq!(drain.as_str(), "abc");
let _ = drain.next().unwrap();
assert_eq!(drain.as_str(), "bc");
相關用法
- Rust Drain.as_slice用法及代碼示例
- Rust DrainFilter用法及代碼示例
- Rust Drain用法及代碼示例
- Rust Drop用法及代碼示例
- Rust DirBuilder.new用法及代碼示例
- Rust DirEntry.metadata用法及代碼示例
- Rust Duration.as_micros用法及代碼示例
- Rust Duration.subsec_nanos用法及代碼示例
- Rust DebugList.entries用法及代碼示例
- Rust Duration.checked_add用法及代碼示例
- Rust DoubleEndedIterator.try_rfold用法及代碼示例
- Rust Div用法及代碼示例
- Rust DirBuilder.recursive用法及代碼示例
- Rust Duration.new用法及代碼示例
- Rust DerefMut用法及代碼示例
- Rust DirBuilder.create用法及代碼示例
- Rust DebugList用法及代碼示例
- Rust DirEntry.path用法及代碼示例
- Rust DebugMap.key用法及代碼示例
- Rust Duration.subsec_micros用法及代碼示例
- Rust DoubleEndedIterator.rfold用法及代碼示例
- Rust DirEntry.file_type用法及代碼示例
- Rust Duration.mul_f64用法及代碼示例
- Rust DebugStruct.finish_non_exhaustive用法及代碼示例
- Rust DebugStruct.field用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::string::Drain.as_str。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。