Open
Description
Right now you either enumerate all the fields on a struct, or use default to get only defaults. Neither of those is super useful, most likely you just want a few fields set at a time and everything else default. Making fields public would enable the normal pattern of
GroupCreateOpts {
name: Some("word up".to_string()),
..Default::default()
}
Metadata
Assignees
Labels
No labels