fake_serialize

Crates.iofake_serialize
lib.rsfake_serialize
version0.1.1
sourcesrc
created_at2020-01-09 15:26:50.861445
updated_at2020-01-09 15:29:28.243923
descriptionA rust macro for implementing dummy implementations of the traits serde::Serialize and serde::Deserialize
homepage
repositoryhttps://github.com/xemwebe/fake_serialize.git
max_upload_size
id196924
size24,842
Mark Beinker (xemwebe)

documentation

README

fake_serialize

A rust macro for implementing dummy implementations of the traits serde::Serialize and serde::Deserialize

Sometimes, you run in the problem to use some trait or function from an external crate, that is constraint to types that implement the traits serde::Serialize or/and serde::Deserialize, even if this is not an requirement for all use cases. Here, using a dummy implementation that just returns an error if serialize or deserialize is calls comes handy.

This crate provides a derive macro that just provides these dummy implementations, e.g.

use fake_serialize::{FakeSerialize,FakeDeserialize};

#[derive(FakeSerialize,FakeDeserialize)]
struct SomeStruct {
    ...
}

License

Licensed under either of

at your option.

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.

License: MIT OR Apache-2.0

Commit count: 4

cargo fmt