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

Respect where clause in generic newtypes #160

Open
greyblake opened this issue Jul 7, 2024 · 0 comments
Open

Respect where clause in generic newtypes #160

greyblake opened this issue Jul 7, 2024 · 0 comments

Comments

@greyblake
Copy link
Owner

At the moment boundaries can be set only within <T: ..>, it's not possible to set boundaries with where clause.

One particular usecase where it would be helpful is this one:

#[nutype(
    validate(predicate = |c| c.into_iter().next().is_some()),
)]
struct NonEmpty<C>(C)
where
    for<'a> &'a C: IntoIterator;

This would allow to define NonEmpty collection, regardless of what kind of collection it is.

See also #130 (comment)

@greyblake greyblake changed the title Respect where clause in the generic new types Respect where clause in generic newtypes Jul 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant