1mod into_json; 2mod into_proto; 3 4pub use into_json::{IntoJSON, IntoJSONStruct}; 5pub use into_proto::{IntoProto, IntoProtoStruct}; 6 7pub type JsonStruct = serde_json::Map<String, serde_json::Value>; 8pub type ProtoStruct = prost_types::Struct;