5个稳定版本

1.2.0 2024年4月30日
1.1.0 2024年4月11日
1.0.2 2023年12月1日
1.0.0 2022年7月18日

#173 in 嵌入式开发

Download history • Rust 包仓库 54/week @ 2024-05-01 • Rust 包仓库 7/week @ 2024-05-15 • Rust 包仓库 34/week @ 2024-05-22 • Rust 包仓库 16/week @ 2024-05-29 • Rust 包仓库 21/week @ 2024-06-05 • Rust 包仓库 15/week @ 2024-06-12 • Rust 包仓库 387/week @ 2024-06-19 • Rust 包仓库 768/week @ 2024-06-26 • Rust 包仓库 453/week @ 2024-07-03 • Rust 包仓库 494/week @ 2024-07-10 • Rust 包仓库 328/week @ 2024-07-17 • Rust 包仓库 452/week @ 2024-07-24 • Rust 包仓库 245/week @ 2024-07-31 • Rust 包仓库 193/week @ 2024-08-07 • Rust 包仓库 476/week @ 2024-08-14 • Rust 包仓库

1,427 每月下载次数

MIT/Apache

7KB
96

format_no_std

实现write_str以获取write_fmt,该功能用于format!()format_args!()宏。用于裸金属环境中的no_std格式化。

许可证

许可协议为以下之一

任选其一。

贡献

除非您明确声明,否则任何有意提交以包含在作品中的贡献,根据Apache-2.0许可证定义,应按上述方式双重许可,无需任何附加条款或条件。

用法

库使用示例

let mut buf = [0u8; 64];
let s = format_no_std::show(
    &mut buf,
    format_args!("Test String {}: {}", "foo", 42),
).unwrap();

assert_eq!("Test String foo: 42", s);

lib.rs:

实现write_str以获取write_fmt,该功能用于format!()format_args!()宏。用于裸金属环境中的no_std格式化。

此代码基于https://stackoverflow.com/questions/50200268/how-can-i-use-the-format-macro-in-a-no-std-environment

let mut buf = [0u8; 64];
let s = format_no_std::show(
    &mut buf,
    format_args!("Test String {}: {}", "foo", 42),
).unwrap();

assert_eq!("Test String foo: 42", s);

无运行时依赖