Meilleur utilisation d'itérateur
This commit is contained in:
commit
5769c7b11f
1 changed files with 2 additions and 10 deletions
|
@ -27,15 +27,7 @@ impl PriceChecker {
|
|||
let response = self.client.get(url.clone()).send().unwrap();
|
||||
let text = response.text().unwrap();
|
||||
let document = Html::parse_document(&text);
|
||||
for parser in self.parser_list.get().iter() {
|
||||
if parser.can_parse(&url) {
|
||||
return parser.parse(&document);
|
||||
}
|
||||
}
|
||||
PriceResult {
|
||||
name: "name".to_owned(),
|
||||
product: "family".to_owned(),
|
||||
price: 0.
|
||||
}
|
||||
let parser = *self.parser_list.get().iter().find(|p| p.can_parse(&url)).unwrap();
|
||||
parser.parse(&document)
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue