Expand description
The inspect-writable library defines traits for simple data structures that can be
written to inspect and exports a procedural macro to implement these traits.
Traits§
- Inspect
Writable - A datatype that may be written to an inspect type. This trait can be automatically derived for
structs composed of inspect-compatible fields, i.e. signed integers, unsigned integers, or types
implementing the
Debugtrait. - Inspect
Writable Node - A wrapper around an Inspect node and a collection of inspect fields. These fields are created
and may updated using the contents of an
InspectWritablestruct. A struct implementingInspectWritableNodeis automatically generated when theInspectWritabletrait is derived.