Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
grim7reaper committed Jan 15, 2024
1 parent d8e5cb8 commit 44d12ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ impl FrozenMap<Vec<u8>> {
}

impl<'a, D: AsRef<[u8]>> IntoIterator for &'a FrozenMap<D> {
type Item = (CellIndex, u64);
type IntoIter = FrozenMapIterator<'a>;
type Item = (CellIndex, u64);

fn into_iter(self) -> Self::IntoIter {
self.iter()
Expand Down
2 changes: 1 addition & 1 deletion src/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ impl FrozenSet<Vec<u8>> {
}

impl<'a, D: AsRef<[u8]>> IntoIterator for &'a FrozenSet<D> {
type Item = CellIndex;
type IntoIter = FrozenSetIterator<'a>;
type Item = CellIndex;

fn into_iter(self) -> Self::IntoIter {
self.iter()
Expand Down

0 comments on commit 44d12ba

Please sign in to comment.