Educe
This crate provides procedural macros to help you implement Rust-build-in traits quickly.
Debug
Use #[derive(Educe)] and #[educe(Debug)] to implement the Debug trait for a struct, an enum, or a union. It supports to change the name of your types, variants and fields. You can also ignore some fields, or set a trait and/or a method to replace the Debug trait used as default. Also, you can even format a struct to a tuple, and vice versa.
Basic Usage
extern crate educe;
Union
A union will be formatted to a u8 slice, because we don't know it's field at runtime.
extern crate educe;
Change the Name of a Type, Variant or a Field
The name attribute can help you rename a type, variant or a field.
extern crate educe;
Ignore Fields
The ignore attribute can ignore specific fields.
extern crate educe;
Fake Structs and Tuples
With the named_field attribute, structs can be formatted as tuples and tuples can be formatted as structs.
extern crate educe;
Use Another Method or Trait to Do the Format Thing
The format attribute has two parameters: trait and method. They can be used to replace the Debug trait on fields. If you only set the trait parameter, the method will be set to fmt automatically as default.
extern crate educe;
use ;
;
;
TODO
There is a lot of work to be done. Unimplemented traits are listed below:
DefaultCloneCopyHashPartialEqEqPartialOrdOrdFromIntoFromStrTryFromDerefDerefMut
Crates.io
https://crates.io/crates/educe