Make clippy happy

This commit is contained in:
Alex 2022-07-22 18:37:20 +02:00
parent 40150527b8
commit 0176da3ad2
Signed by: lx
GPG Key ID: 0E496D15096376BE
1 changed files with 6 additions and 0 deletions

View File

@ -56,3 +56,9 @@ impl<D: Digest> AsyncHasher<D> {
self.task.await.unwrap()
}
}
impl<D: Digest> Default for AsyncHasher<D> {
fn default() -> Self {
Self::new()
}
}