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
Debug
trait. - 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
InspectWritable
struct. A struct implementingInspectWritableNode
is automatically generated when theInspectWritable
trait is derived.