Jonas Platte a6a530dcc8 serde: Rename derive macro Outgoing to Incoming
All it does now is generate `Incoming{Self}` types.
2022-03-22 13:19:03 +01:00

14 lines
292 B
Rust

//! Methods and types for (de)serialization.
pub mod attr;
pub mod case;
pub mod deserialize_from_cow_str;
pub mod display_as_ref_str;
pub mod enum_as_ref_str;
pub mod enum_from_string;
pub mod eq_as_ref_str;
pub mod incoming;
pub mod ord_as_ref_str;
pub mod serialize_as_ref_str;
mod util;