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
feat: use better default for openapi/rust client (#958)
The OpenAPI-generated Rust client by default wraps types in `Box<T>`,
which can get annoying pretty fast, in everything from `.into()` or
`Box::new` on object construction to having to do `.as_ref()` on every
`match` construct.
Setting `avoidBoxedModels=true` makes this behavior much more sane.
0 commit comments