Docs.rs
jockey_derive-0.3.0
Platform
x86_64-unknown-linux-gnu
Feature flags
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
jockey_derive 0.3.0
Implementation of #[derive(Arguments)] for the jockey crate
Crate
Source
Builds
Feature flags
Documentation
Coverage
100%
2
out of
2
items documented
1
out of
2
items with examples
Links
Richard-W/jockey
1
0
0
crates.io
Dependencies
proc-macro2 ^0.4.24
normal
quote ^0.6.10
normal
syn ^0.15.22
normal
jockey ^0
dev
Versions
0.3.0
0.2.1
0.2.0
0.1.0
0.0.0
Owners
This crate provides jockey's derive macro. ```rust # extern crate jockey; # #[macro_use] extern crate jockey_derive; # fn main() { #[derive(Arguments)] # #[derive(Default)] # struct Struct { # pub field: String, # } # } ```