#serde #display #serialization #string #from-str

serde_str

A serde wrapper that stores type using Display and FromStr

1 unstable release

Uses old Rust 2015

0.1.0 Mar 2, 2018

#2021 in Encoding

Download history 252/week @ 2023-12-05 277/week @ 2023-12-12 219/week @ 2023-12-19 173/week @ 2023-12-26 238/week @ 2024-01-02 297/week @ 2024-01-09 294/week @ 2024-01-16 246/week @ 2024-01-23 254/week @ 2024-01-30 265/week @ 2024-02-06 332/week @ 2024-02-13 296/week @ 2024-02-20 334/week @ 2024-02-27 285/week @ 2024-03-05 249/week @ 2024-03-12 289/week @ 2024-03-19

1,238 downloads per month
Used in 34 crates (15 directly)

MIT/Apache

9KB
50 lines

Serde Str

Documentation | Github | Crate

A serde wrapper, that can be used to serialize data types using Display (or .to_string()) and FromStr.

Example

#[macro_use]
extern crate serde_derive;

extern crate serde;
extern crate serde_str;

use std::net::IpAddr;

#[derive(Serialize, Deserialize)]
struct Struct {
    /// By default IpAddr is serialized the same in human-readable formats
    /// like json. This forces the impl even for binary formats.
    ///
    /// More inporantly this is useful for types which don't have serde impl.
    #[serde(with = "serde_str")]
    ip: IpAddr,
}

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~110–355KB