AnyStruct Crate

AnyStruct is a Rust crate that provides traits for converting between JSON and Protocol Buffers (Proto) data structures. Specifically, it offers the following traits:

Usage

To use AnyStruct in your Rust project, add the following line to your Cargo.toml file:

toml [dependencies] anystruct = "0.1.0"

Here is an example usage for converting a JSON string to a Proto struct:

```rust use anystruct::{IntoProto, ProtoStruct};

let jsonstr = r#"{ "name": "John Doe", "age": 42, "isstudent": true, "grades": [80, 85, 90], "address": { "street": "123 Main St", "city": "Anytown", "state": "CA" } }"#;

let jsonvalue = serdejson::fromstr(jsonstr).unwrap(); let protovalue = jsonvalue.intoproto(); let protostruct = ProtoStruct { fields: [("mydata".tostring(), proto_value)].iter().cloned().collect() }; ```

And here is an example usage for converting a Proto struct to a JSON string:

```rust use anystruct::{IntoJSON, IntoJSONStruct};

let protovalue = prosttypes::Value { kind: Some(prosttypes::value::Kind::StructValue(prosttypes::Struct { fields: [("name".tostring(), prosttypes::Value { kind: Some(prosttypes::value::Kind::StringValue("John Doe".tostring())), })].iter().cloned().collect(), })), }; let jsonvalue = protovalue.intojson(); let jsonmap = jsonvalue.asobject().unwrap().clone(); let jsonstr = serdejson::tostringpretty(&json_map).unwrap(); ```

You can also use the IntoProtoStruct and IntoJSONStruct traits to convert between Struct and serde_json::Map structs:

rust let proto_struct = json_map.into_proto_struct(); let json_map2 = proto_struct.into_json_struct();