|
@@ -74,6 +74,11 @@ pub fn derive_database(tokens: TokenStream) -> TokenStream {
|
|
|
database::derive(tokens)
|
|
|
}
|
|
|
|
|
|
+/// Index columns specification macro.
|
|
|
+///
|
|
|
+/// This macro uses the type indirection set up in microrm to take a list of struct fields, such as
|
|
|
+/// `SomeStruct::field_a, SomeStruct::field_b`, and converts it to an EntityPartList for the
|
|
|
+/// relevant entity.
|
|
|
#[proc_macro]
|
|
|
pub fn index_cols(tokens: TokenStream) -> TokenStream {
|
|
|
index::index_cols(tokens)
|