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

clippy 1.80 #312

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/validatron/src/reflection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
//!
//! The [ClassBuilder] can build 4 types of class
//! - [Primitive] : representation of a base type. It needs a parsing function and a function to know which operator is available
//! on it and how to use it.
//! on it and how to use it.
//! - [Struct] : representation of a struct. It needs the description of its fields and how to access each one.
//! - [Enum] : representation of a enum. It needs the description of its fields, including the relative variant, and how to access each one.
//! - [Collection] : representation of a collection. It requires that the current type implements `IntoIterator<Item = &'x U>` if `U` is the
//! type of the items in the collection.
//! type of the items in the collection.

use std::marker::PhantomData;

Expand Down