serde-field-with 0.2.1

Serde field with attribute
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(feature = "alloc")]
extern crate alloc;

#[cfg(feature = "alloc")]
pub mod to_and_from_string;
#[cfg(feature = "alloc")]
pub use to_and_from_string::{deserialize as from_str, serialize as to_string};

#[cfg(feature = "alloc")]
pub mod to_and_from_string_option;