本文簡要介紹rust語言中 Function alloc::fmt::write
的用法。
用法
pub fn write(output: &mut dyn Write, args: Arguments<'_>) -> Result<(), Error>
write
函數接受一個輸出流和一個可以使用 format_args!
宏預編譯的 Arguments
結構。
參數將根據指定的格式字符串格式化到提供的輸出流中。
例子
基本用法:
use std::fmt;
let mut output = String::new();
fmt::write(&mut output, format_args!("Hello {}!", "world"))
.expect("Error occurred while trying to write in String");
assert_eq!(output, "Hello world!");
請注意,使用 write!
可能更可取。例子:
use std::fmt::Write;
let mut output = String::new();
write!(&mut output, "Hello {}!", "world")
.expect("Error occurred while trying to write in String");
assert_eq!(output, "Hello world!");
相關用法
- Rust write_volatile用法及代碼示例
- Rust write用法及代碼示例
- Rust write_unaligned用法及代碼示例
- Rust writeln用法及代碼示例
- Rust write_bytes用法及代碼示例
- Rust UdpSocket.set_multicast_loop_v6用法及代碼示例
- Rust i64.overflowing_add_unsigned用法及代碼示例
- Rust Box.downcast用法及代碼示例
- Rust BTreeMap.last_key_value用法及代碼示例
- Rust str.make_ascii_uppercase用法及代碼示例
- Rust u128.checked_pow用法及代碼示例
- Rust usize.wrapping_mul用法及代碼示例
- Rust AtomicU8.fetch_sub用法及代碼示例
- Rust PanicInfo.payload用法及代碼示例
- Rust MaybeUninit.assume_init_mut用法及代碼示例
- Rust String.try_reserve用法及代碼示例
- Rust Mutex.new用法及代碼示例
- Rust f32.exp用法及代碼示例
- Rust Result.unwrap_or_else用法及代碼示例
- Rust slice.sort_unstable_by_key用法及代碼示例
- Rust Formatter.precision用法及代碼示例
- Rust i128.log2用法及代碼示例
- Rust OsStr.to_ascii_uppercase用法及代碼示例
- Rust f32.hypot用法及代碼示例
- Rust RefCell.try_borrow_unguarded用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Function alloc::fmt::write。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。