You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently setting properties on Job outside of kind and args requires manually building a Job or building a Job with new, then mutating its properties. I'd suggest using a builder to create jobs and make the fields of Job private. My suggested approach would probably be derive_builder.
If this sounds reasonable I'm happy to make this change.
The text was updated successfully, but these errors were encountered:
Yeah, that makes a lot of sense! I've been wanting to make that change in accordance with C-BUILDER in the Rust API guidelines too. A PR using derive_builder seems reasonable to me!
Currently setting properties on Job outside of kind and args requires manually building a Job or building a Job with new, then mutating its properties. I'd suggest using a builder to create jobs and make the fields of Job private. My suggested approach would probably be derive_builder.
If this sounds reasonable I'm happy to make this change.
The text was updated successfully, but these errors were encountered: