serde-aux 4.7.0

A serde crate's auxiliary library
Documentation
//! # serde-aux
//!
//! A serde auxiliary library.

#![deny(missing_docs)]
#![deny(warnings)]

/// Contains helpers for the containers.
pub mod container_attributes;
/// Contains helpers for the fields.
#[macro_use]
pub mod field_attributes;
/// Contains helpers for accessing structure metadata (e.g. struct field names when serialized) using serde.
pub mod serde_introspection;

/// Prelude module, contains the most needed helpers from this library.
pub mod prelude {
    pub use crate::container_attributes::*;
    pub use crate::field_attributes::*;
    pub use crate::serde_introspection::*;
}