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

#176 in Procedural macros

Download history 1242/week @ 2024-01-08 1071/week @ 2024-01-15 1189/week @ 2024-01-22 757/week @ 2024-01-29 671/week @ 2024-02-05 714/week @ 2024-02-12 775/week @ 2024-02-19 736/week @ 2024-02-26 799/week @ 2024-03-04 1020/week @ 2024-03-11 1019/week @ 2024-03-18 1010/week @ 2024-03-25 1444/week @ 2024-04-01 947/week @ 2024-04-08 1141/week @ 2024-04-15 1024/week @ 2024-04-22

4,620 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