derive-debug

This crate implements a more customizable version of #[derive(Debug)].

Usage

The usage is very similar to #[derive(Debug)] with a few extra customization options.

Deriving a struct

```rust use derive_debug::Dbg;

[derive(Dbg)]

struct Foo { fielda: u32, #[dbg(placeholder = "...")] fieldb: Vec, // will be printed as "fieldb: ..." #[dbg(skip)] fieldc: bool, // will be left out #[dbg(alias = "mystring")] fieldd: u32, // will be printed as "mystring: 42" #[dbg(fmt = "{:#06X}")] fielde: u32, // will be printed with the specified format } ```

Deriving an enum

```rust use derive_debug::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}

} ```

Detailed options

Field Options

Enum Variant Options

struct Options