Rust default and keyword macro

github Crates.io docs.rs GitHub Workflow Status

Example

Basic example of using default arguments:

```rust use defaultkwargs::{defaultargs, keyword_args};

default_args! { fn thing(x: i32, y: i32 = 42) -> (i32, i32) { (x, y) } }

fn main() { let (r, s) = keywordargs! { thing(42) }; asserteq!(r, 42); assert_eq!(s, 42);

let (r, s) = keyword_args! { thing(42, y = 666) };
assert_eq!(r, 42);
assert_eq!(s, 666);

} ```

Like in the most languages that have this feature, positional argument have to come before any arguments with default value.

Limitations

How does it work

Basically, the default_args macro generates a new struct and implements Default for it based on function's name. The example above expands to roughly this:

```rust struct ThingArgs { y: i32, }

impl Default for ThingArgs { fn default() -> Self { Self { y: 42 } } }

fn thing(x: i32, ThingArgs { y }: ThingArgs) -> (i32, i32) { (x, y) } ```

And keyword_args does the opposite:

rust,ignore fn main() { let (r, s) = thing( 42, ThingArgs { ..ThingArgs::default() }, ); }

Credits

Thank you @dtolnay for an amazing work in parsing and macro ecosystems:

License

MIT or Apache License, Version 2.0 at your option.