Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Derive Default for generic newtype #139

Closed
greyblake opened this issue Jun 1, 2024 · 1 comment
Closed

Derive Default for generic newtype #139

greyblake opened this issue Jun 1, 2024 · 1 comment
Assignees

Comments

@greyblake
Copy link
Owner

The following should compile and work as expected:

use nutype::nutype;

#[nutype(
    derive(Default),
    default = Vec::new(),
)]
struct Collection<T>(Vec<T>);

Make sure to have a proper test coverage

@greyblake
Copy link
Owner Author

Addressed in #151

@github-project-automation github-project-automation bot moved this from Todo to Done in Nutype 0.4.3 Jun 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
No open projects
Status: Done
Development

No branches or pull requests

1 participant