#mq #redis #http #web

macro tardis-macros

Elegant, clean Rust development framework

19 releases

0.1.0-rc.11 Apr 2, 2024
0.1.0-rc.10 Mar 20, 2024
0.1.0-rc.9 Jan 24, 2024
0.1.0-rc.7 Dec 26, 2023
0.1.0-alpha30 Nov 29, 2022

#15 in #mq

Download history 31/week @ 2024-01-08 42/week @ 2024-01-22 11/week @ 2024-02-19 26/week @ 2024-02-26 8/week @ 2024-03-11 199/week @ 2024-03-18 5/week @ 2024-03-25 240/week @ 2024-04-01 545/week @ 2024-04-08 5/week @ 2024-04-15

804 downloads per month
Used in 4 crates (via tardis)

MIT/Apache

47KB
889 lines

Tardis-Macros

Tardis-Macros is a macro support library for the Tardis framework, providing additional macros to simplify code generation for DTO (Data Transfer Object) with sea_orm.

Main Macros

  • TardisCreateEntity: Generates code to create entities, combining TardisCreateIndex and TardisCreateTable.

Features

Tardis-Macros supports the following features, which enable the usage of specific macros:

Feature Macro
reldb-postgresorreldb-mysqlorreldb-sqlite TardisCreateTable
reldb-postgresorreldb-mysqlorreldb-sqlite TardisCreateIndex
reldb-postgresorreldb-mysqlorreldb-sqlite TardisCreateEntity
reldb-postgresorreldb-mysqlorreldb-sqlite TardisEmptyBehavior
reldb-postgresorreldb-mysqlorreldb-sqlite TardisEmptyRelation

Please note that the availability of each macro depends on the enabled features. Make sure to enable the corresponding feature to use the desired macro.

How to Use

Best Practices

Add the TardisCreateEntity macro to your struct definition, along with other necessary derive macros like DeriveEntityModel, TardisEmptyBehavior, and TardisEmptyRelation.

Example usage:

#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel, TardisCreateEntity, TardisEmptyBehavior, TardisEmptyRelation)]
#[sea_orm(table_name = "examples")]
pub struct Model {
    #[sea_orm(primary_key, auto_increment = false)]
    pub id: String,
    #[index]
    #[fill_ctx(own_paths)]
    pub aaa: String,
}

You also can refer to the example code and test cases for the best practices on using the Tardis-Macros library.

For more examples and detailed usage, please refer to the documentation of each specific macro.

[TardisCreateEntity]

Dependencies

~1–1.4MB
~31K SLoC