#memory #debugging #view #print #no-std

无 std memdbg

原始内存格式化器

5 个版本

0.1.4 2024年1月21日
0.1.3 2023年10月13日
0.1.2 2023年10月13日
0.1.1 2023年10月13日
0.1.0 2023年10月13日

113值格式化

每月下载量 34 次

MIT/Apache

7KB
90

Memdbg

Memdbg 提供了 Buf 结构体,它实现了 Debug 接口,提供类似十六进制阅读器的内存查看功能。

buf_dbg 宏扩展了这种查看功能,使其适用于任何结构体。

示例

let buf = memdbg::Buf(*b"\x41 \x68 \x90 \x00 \x2f This is a test string, The Line Break will demonstrate multiline formatting!");
dbg!("{buf:?}");

将显示

| 41 20 68 20 90 20 00 20 | 2F 20 54 68 69 73 20 69 | 73 20 61 20 74 65 73 74 | 20 73 74 72 69 6E 67 2C | A . h . . . . . / . T h i s . i s . a . t e s t . s t r i n g ,
| 20 54 68 65 20 4C 69 6E | 65 20 42 72 65 61 6B 20 | 77 69 6C 6C 20 64 65 6D | 6F 6E 73 74 72 61 74 65 | . T h e . L i n e . B r e a k . w i l l . d e m o n s t r a t e
| 20 6D 75 6C 74 69 6C 69 | 6E 65 20 66 6F 72 6D 61 | 74 74 69 6E 67 21                                 | . m u l t i l i n e . f o r m a t t i n g !

lib.rs:

Memdbg

Memdbg 提供了 [Buf] 结构体,它实现了 Debug 接口,提供类似十六进制阅读器的内存查看功能。

buf_dbg 宏扩展了这种查看功能,使其适用于任何结构体。

示例

let buf = memdbg::Buf(*b"\x41 \x68 \x90 \x00 \x2f This is a test string, The Line Break will demonstrate multiline formatting!");
dbg!("{buf:?}");

将显示

| 41 20 68 20 90 20 00 20 | 2F 20 54 68 69 73 20 69 | 73 20 61 20 74 65 73 74 | 20 73 74 72 69 6E 67 2C | A.h...../.This.is.a.test.string,
| 20 54 68 65 20 4C 69 6E | 65 20 42 72 65 61 6B 20 | 77 69 6C 6C 20 64 65 6D | 6F 6E 73 74 72 61 74 65 | .The.Line.Break.will.demonstrate
| 20 6D 75 6C 74 69 6C 69 | 6E 65 20 66 6F 72 6D 61 | 74 74 69 6E 67 21                                 | .multiline.formatting!

无运行时依赖

功能