delve 0.3.0

Provides a number of macros that make working with enums and strings more convenient.
Documentation
1
2
3
4
5
6
7
8
9
10
//! # Field Attributes
//!
//! - `#[delve(rename_field = "<name>")]`
//! 
//!   Renames a single field within a struct variant. This overides any container attributes if applied.
//!   - `#[delve(rename_field = "foobar")]`
//!
//! - `#[delve(skip)]`
//!
//! Skips the respective field.