| Crates.io | derive-debug-plus |
| lib.rs | derive-debug-plus |
| version | 0.5.0 |
| created_at | 2024-02-20 07:55:17.391004+00 |
| updated_at | 2024-02-21 12:12:32.523862+00 |
| description | Customizable derive macro for Debug trait |
| homepage | |
| repository | https://github.com/2A5F/derive-debug-plus |
| max_upload_size | |
| id | 1146077 |
| size | 27,998 |
This crate implements a more customizable version of #[derive(Debug)].
The usage is very similar to #[derive(Debug)] with a few extra customization options.
use derive_debug_plus::Dbg;
#[derive(Dbg)]
struct Foo {
field_a: u32,
#[dbg(placeholder = "...")]
field_b: Vec<u32>, // will be printed as "field_b: ..."
#[dbg(skip)]
field_c: bool, // will be left out
#[dbg(alias = "my_string")]
field_d: u32, // will be printed as "my_string: 42"
#[dbg(fmt = "{:#06X}")]
field_e: u32, // will be printed with the specified format
}
use derive_debug_plus::Dbg;
#[derive(Dbg)]
enum Foo {
VariantA(u32, u32, u32),
#[dbg(skip)]
VariantB{a: u32, b: bool}, // Will be printed as "VariantB"
// same options available as for struct fields
VariantC{a: u32, #[dbg(placeholder = "...")] b: bool}
}
#[dbg(skip)] completely omits a field in the output use derive_debug_plus::Dbg;
#[derive(Dbg)]
struct Foo {
field_a: bool,
#[dbg(skip)]
field_b: u32,
}
// Outputs: Foo { field_a: true }
#[dbg(placeholder = "xyz")] will print xyz instead of the actual contents of a field use derive_debug_plus::Dbg;
#[derive(Dbg)]
struct Foo {
field_a: bool,
#[dbg(placeholder = "...")]
field_b: u32,
}
// Outputs: Foo { field_a: true, field_b: ... }
#[dbg(alias = "some_alias")] will print some_alias as field name instead of the real name use derive_debug_plus::Dbg;
#[derive(Dbg)]
struct Foo {
field_a: bool,
#[dbg(alias = "not_field_b")]
field_b: u32,
#[dbg(alias = &format!("expr_{}", "b"))]
field_c: u32,
}
// Outputs: Foo { field_a: true, not_field_b: 42, expr_b: 137 }
#[dbg(fmt = "{:#06X}")] will print the field with the specified format use derive_debug_plus::Dbg;
#[derive(Dbg)]
struct Foo {
field_a: bool,
#[dbg(fmt = "{:#06X}")]
field_b: u32,
}
// Outputs: Foo { field_a: true, field_b: 0x002A }
#[dbg(formatter = "my_func")] will print the field using the specified function. use derive_debug_plus::Dbg;
#[derive(Dbg)]
struct Foo(u32, #[dbg(formatter = fmt_not_zero)] u32);
fn fmt_not_zero(v: &u32) -> &'static str {
if *v == 0 {
"0"
} else {
"not 0"
}
}
// Outputs: Foo(42, not 0)
#[dbg(expr = &"123")] will pass the expression directly into use derive_debug_plus::Dbg;
#[derive(Dbg)]
struct Foo {
field_a: bool,
#[dbg(expr = &"123")]
field_b: u32,
}
// Outputs: Foo { field_a: true, field_b: "123" }
#[dbg(sort = -1)] use derive_debug_plus::Dbg;
#[derive(Dbg)]
struct Foo {
field_a: bool,
#[dbg(sort = -1)]
field_b: u32,
}
// Outputs: Foo { field_b: 123, field_a: true }
#[dbg(flat_option)] use derive_debug_plus::Dbg;
#[derive(Dbg)]
struct Foo {
#[dbg(flat_option)]
field_a: Option<u32>, // None
#[dbg(flat_option)]
field_b: Option<u32>, // Some
}
// Outputs: Foo { field_b: 123 }
#[dbg(skip)] only prints the name of the variant and omits its contents use derive_debug_plus::Dbg;
#[derive(Dbg)]
enum Foo {
#[dbg(skip)]
SomeVariant{a: bool, b: u32},
}
// Outputs: SomeVariant
#[dbg(alias = "some_alias")] will use some_alias as variant name instead of the real name use derive_debug_plus::Dbg;
#[derive(Dbg)]
enum Foo {
#[dbg(alias = "NotSomeVariant")]
SomeVariant{a: bool, b: u32},
}
// Outputs: NotSomeVariant { a: true, b: 42 }
#[dbg(alias = "MyAlias")] will use MyAlias as struct name instead of the real name use derive_debug_plus::Dbg;
#[derive(Dbg)]
#[dbg(alias = "NotFoo")]
struct Foo {
field_a: bool,
field_b: u32,
}
// Outputs: NotFoo { field_a: true, not_field_b: 42 }