#format #replace #buffer #buf #drop-in #write #macro

format-buf

format!宏的替换方案,可以写入现有的缓冲区

1个稳定版本

1.0.0 2019年7月20日

#10 in #drop-in

Download history • Rust 包仓库 607/week @ 2024-04-11 • Rust 包仓库 682/week @ 2024-04-18 • Rust 包仓库 859/week @ 2024-04-25 • Rust 包仓库 554/week @ 2024-05-02 • Rust 包仓库 113/week @ 2024-05-09 • Rust 包仓库 175/week @ 2024-05-16 • Rust 包仓库 146/week @ 2024-05-23 • Rust 包仓库 116/week @ 2024-05-30 • Rust 包仓库 153/week @ 2024-06-06 • Rust 包仓库 88/week @ 2024-06-13 • Rust 包仓库 78/week @ 2024-06-20 • Rust 包仓库 95/week @ 2024-06-27 • Rust 包仓库 48/week @ 2024-07-04 • Rust 包仓库 84/week @ 2024-07-11 • Rust 包仓库 81/week @ 2024-07-18 • Rust 包仓库 40/week @ 2024-07-25 • Rust 包仓库

每月257次下载

MIT/Apache

6KB

Build Status Crates.io API reference

概述

std::format!的替换方案,可选地接受一个现有的String缓冲区。

use format_buf::format;

let mut buf = format!("Roses are {},\n", "red");
let () = format!(buf, "Violets are {}.", "blue");
assert_eq!(buf, "\
    Roses are red,\n\
    Violets are blue.\
")

无运行时依赖