This crate implements a more customizable version of #[derive(Debug)]
.
The usage is very similar to #[derive(Debug)]
with a few extra customization options.
```rust use derive_debug::Dbg;
struct Foo {
fielda: u32,
#[dbg(placeholder = "...")]
fieldb: Vec
```rust use derive_debug::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
```rust
use derive_debug::Dbg;
struct Foo { fielda: bool, #[dbg(skip)] fieldb: u32, }
// Outputs: Foo { field_a: true } ```
#[dbg(placeholder = "xyz")]
will print xyz
instead of the actual contents of a field
```rust
use derive_debug::Dbg;
struct Foo { fielda: bool, #[dbg(placeholder = "...")] fieldb: u32, }
// Outputs: Foo { fielda: true, fieldb: ... } ```
#[dbg(alias = "some_alias")]
will print some_alias
as field name instead of the real name
```rust
use derive_debug::Dbg;
struct Foo { fielda: bool, #[dbg(alias="notfieldb")] fieldb: u32, }
// Outputs: Foo { fielda: true, notfield_b: 42 } ```
#[dbg(fmt = "{:#06X}")]
will print the field with the specified format
```rust
use derive_debug::Dbg;
struct Foo { fielda: bool, #[dbg(fmt = "{:#06X}")] fieldb: u32, }
// Outputs: Foo { fielda: true, fieldb: 0x002A } ```
#[dbg(formatter = "my_func")]
will print the field using the specified function.
The function has to return a type that can be formatted using "{}"
```rust
use derive_debug::Dbg;
struct Foo(u32, #[dbg(formatter = "fmtnotzero")] u32);
fn fmtnotzero(v: &u32) -> &'static str { if *v == 0 { "0" } else { "not 0" } }
// Outputs: Foo(42, not 0) ```
#[dbg(skip)]
only prints the name of the variant and omits its contents
```rust
use derive_debug::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
```rust
use derive_debug::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
```rust
use derive_debug::Dbg;
struct Foo { fielda: bool, fieldb: u32, }
// Outputs: NotFoo { fielda: true, notfield_b: 42 } ```