浏览代码

Add documentation to index_cols! macro.

Kestrel 7 月之前
父节点
当前提交
168170caca
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      microrm-macros/src/lib.rs

+ 5 - 0
microrm-macros/src/lib.rs

@@ -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)