#arguments #optional #function #const #macro

optargs

Easily create macros for functions with optional arguments

3 releases

0.1.2 Apr 25, 2021
0.1.1 Apr 19, 2021
0.1.0 Mar 31, 2021

#2516 in Rust patterns

Download history 93/week @ 2023-12-13 51/week @ 2023-12-20 16/week @ 2023-12-27 26/week @ 2024-01-03 28/week @ 2024-01-10 58/week @ 2024-01-17 69/week @ 2024-01-24 68/week @ 2024-01-31 76/week @ 2024-02-07 84/week @ 2024-02-14 105/week @ 2024-02-21 114/week @ 2024-02-28 124/week @ 2024-03-06 169/week @ 2024-03-13 74/week @ 2024-03-20 50/week @ 2024-03-27

445 downloads per month

MIT/Apache

7KB

OptArgs: Optional arguments for Rust functions

Enable optional arguments for any function:

#[optargs::optfn]
pub fn plot(
    x: Vec<i32>,
    y: Option<Vec<i32>>,
    title: Option<&str>,
    xlabel: Option<&str>,
    ylabel: Option<&str>,
    legend: Option<bool>
) {}

// can now call it with optional arguments
plot!(
    x: vec![1,2,3], 
    y: vec![1,2,3], 
    title: "Awesome plot", 
    xlabel: "x axis", 
    ylabel: "y axis"
);

...or struct:

#[derive(optargs::OptStruct)]
pub struct Scatter {
    x: Vec<i32>,
    y: Option<Vec<i32>>,
    title: Option<&str>,
    xlabel: Option<&str>,
    ylabel: Option<&str>,
    legend: Option<bool>
}
impl Scatter {
    fn plot(self) {/* custom impl that references self */}
}

// Call it
Scatter!{ x: vec![1,2,3], y: vec![1,2,3] }.plot()

This crate is especially useful for cleaning up builder-heavy codebases and making library APIs more ergonomic. It also integrates well with Rust-Analyzer and doesn't generate heavy compile times.


This crate adds two macros to make it easy to add optional arguments to functions.

  • #[optargs] - derive a macro_rules to call a function with optional arguments.
  • #[derive(OptStruct)] - derive a typed-builder builder for a struct with optional fields.

This crate takes advantage of the recent const_generics in Rust stable (1.51), so our MSRV is 1.51.

Of note:

  • All optional arguments will default to none. We currently don't provide a custom default (accepting PRs if anyone wants!).
  • All optional arguments must come after required arguments.
  • Unnamed positional arguments must be in the correct position.
  • All arguments can be required, but now you get to name them.
  • Traditional macro_rules scoping applies IE you can't use the macro before function declaration. However, they are exported with macro_export, so you can use them anywhere with crate::$MACRO. Currently, there's no way to disable this, so you can't have two functions with the same name. If this becomes a problem, we'll gladly accept a PR.

How it works:

OptArgs uses const generics to ensure compile-time correctness. I've taken the liberty of expanding and humanizing the macros in the reference examples.

In essence, we encode the state of required parameters into a ZST with const parameters. When each required parameter is added, we flip the const parameter from false to true. Only when all the required parameters are entered, then can we proceed with calling the original function.

struct Validator<const A: bool> {}
impl Validator<true> { fn validate(self) {} }
impl<const A: bool> Validator<A> { fn b(self) -> Validator<A> { self }}
// Not to worry about the unsafe, Validator is a ZST and has no place in memory.
// All this validation code will be removed anyways.
impl Validator<false> { fn a(self) -> Validator<true> { unsafe {std::mem::transmute(self)} } }

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5MB
~33K SLoC