8 unstable releases (3 breaking)

0.4.1 Apr 20, 2023
0.4.0 Feb 22, 2023
0.3.0 Nov 19, 2022
0.2.2 Oct 14, 2022
0.1.0 Apr 11, 2022

#146 in Procedural macros

Download history 950/week @ 2023-12-14 263/week @ 2023-12-21 531/week @ 2023-12-28 966/week @ 2024-01-04 1213/week @ 2024-01-11 1288/week @ 2024-01-18 759/week @ 2024-01-25 810/week @ 2024-02-01 536/week @ 2024-02-08 879/week @ 2024-02-15 634/week @ 2024-02-22 806/week @ 2024-02-29 1136/week @ 2024-03-07 739/week @ 2024-03-14 1054/week @ 2024-03-21 1018/week @ 2024-03-28

4,082 downloads per month
Used in 8 crates (5 directly)

MIT license

45KB
1K SLoC

StructStruck

Ever had a deeply nested JSON struct

{
    "outer": {
        "middle": {
            "inner": {
                "foo": "bar"
            }
        }
    }
}

and wanted to write the Rust structs to handle that data just in the same nested way?

struct Parent {
    outer: struct {
        middle: struct {
            inner: struct {
                foo: String,
            }
        }
    }
}

This proc macro crate allows exactly that. Check the docs on how exaclty.

For illustration, some more usecases:

  • an enum where every variant has its own struct, named exactly the same as the variant.
structstruck::strike! {
    enum Token {
        Identifier(struct {
            name: String,
        }),
        Punctuation(struct {
            character: char,
        }),
    }
}
  • my original use case: conveniently write kubernetes custom resources with kube.
structstruck::strike! {
    #[strikethrough[derive(Deserialize, Serialize, Clone, Debug, Validate, JsonSchema)]]
    #[strikethrough[serde(rename_all = "camelCase")]]
    #[derive(CustomResource)]
    #[kube(
        group = "kafka.strimzi.io",
        version = "v1beta2",
        kind = "Kafka",
        namespaced
    )]
    struct KafkaSpec {
        kafka: struct KafkaCluster {
            #[validate(length(min = 1))]
            version: String,
            #[validate(range(min = 1))]
            replicas: u32,
            listeners: Vec<struct KafkaListener {
                name: String,
                port: u16,
                r#type: String,
                tls: bool,
            }>,
            config: HashMap<String, JsonValue>,
            storage: struct {
                r#type: String,
                volumes: Vec<struct Volume {
                    id: Option<u64>,
                    r#type: String,
                    size: String,
                    delete_claim: bool,
                }>,
            },
        },
        zookeeper: struct {
            #[validate(range(min = 1))]
            replicas: u32,
            storage: Volume,
        },
        entity_operator: struct {
            topic_operator: Option<HashMap<String, JsonValue>>,
            user_operator: Option<HashMap<String, JsonValue>>,
        },
    }
}

Dependencies

~305KB