We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 056f98e commit c6b3034Copy full SHA for c6b3034
rustify_derive/README.md
@@ -0,0 +1,5 @@
1
+Provides a derive macro for easily implementing an `Endpoint` from the
2
+[rustify][1] crate. See the documentation for `rustify` for details on how
3
+to use this macro.
4
+
5
+[1]: https://docs.rs/rustify/
rustify_derive/src/lib.rs
@@ -267,7 +267,7 @@ fn endpoint_derive(s: synstructure::Structure) -> proc_macro2::TokenStream {
267
// Generate query function
268
let query = gen_query(&field_attrs);
269
270
- // Gather data
+ // Generate data
271
let data = match gen_data(&field_attrs) {
272
Ok(v) => v,
273
Err(e) => return e.into_tokens(),
0 commit comments