Fix Recipe::hash in download_progress example

This commit is contained in:
Héctor Ramón Jiménez 2020-03-24 14:07:34 +01:00
parent 784b8ee74c
commit fd7d9622e3

View File

@ -20,7 +20,9 @@ where
fn hash(&self, state: &mut H) {
use std::hash::Hash;
std::any::TypeId::of::<Self>().hash(state);
self.url.hash(state);
}
fn stream(