anystruct 0.1.0

AnyStruct is a Rust crate that provides traits for converting between JSON and Protocol Buffers (Proto) data structures.
Documentation
1
2
3
4
5
6
7
8
mod into_json;
mod into_proto;

pub use into_json::{IntoJSON, IntoJSONStruct};
pub use into_proto::{IntoProto, IntoProtoStruct};

pub type JsonStruct = serde_json::Map<String, serde_json::Value>;
pub type ProtoStruct = prost_types::Struct;