Skip to content

Commit

Permalink
chore: clippy 1.80
Browse files Browse the repository at this point in the history
  • Loading branch information
banditopazzo committed Jul 30, 2024
1 parent 8d28f85 commit 58cede7
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 58cede7

Please sign in to comment.