Skip to content

Commit

Permalink
types: fix new clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
neocturne committed Mar 3, 2024
1 parent 96c3c8c commit a90cac0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ macro_rules! coord_type {

/// Returns an iterator over all possible values of the type
#[inline]
pub fn iter() -> impl Iterator<Item = $t<AXIS>>
+ DoubleEndedIterator
pub fn iter() -> impl DoubleEndedIterator<Item = $t<AXIS>>
+ ExactSizeIterator
+ FusedIterator
+ Clone
Expand Down

0 comments on commit a90cac0

Please sign in to comment.