| Crates.io | variadic_arguments |
| lib.rs | variadic_arguments |
| version | 0.1.2 |
| created_at | 2025-06-14 03:36:44.639702+00 |
| updated_at | 2025-06-15 02:37:32.532906+00 |
| description | Implements variadic arguments into Rust. |
| homepage | |
| repository | https://github.com/bloopos/variadic_args |
| max_upload_size | |
| id | 1712099 |
| size | 48,567 |
A crate that implements variadic arguments into Rust.
Any + Clone.
OwnedArgument stores an owned variant. For smaller types, it uses inline storage instead.Argument follows Copy-on-Write behavior, which enables borrowing variants.ArgumentsBuilder is meant for building Arguments safely. This is done by setting a strict limit to the amount of arguments in the builder itself.Arguments allows for parsing each argument. While the inner argument count is set, this allows for parsing each item with mutable access.