|
|
|
|
|
by khuey
1700 days ago
|
|
You end up having to do struct Parameters {
non_optional_parameter_1: Foo,
non_optional_parameter_2: Bar,
extra_options: ParametersWithDefault,
}
#[derive(Default)]
struct ParametersWithDefault {
...
}
which is kind of annoying but not the end of the world. |
|