summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-04-07 19:48:35 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-04-07 19:48:35 +0200
commit1fd05c70b418c017ce9ffe32e96f4df1cd426162 (patch)
treea9aa713312f83620f505a014b4953e1e39a311d3
parent4419c0a106b3913692396fd4720a654b8deeea0c (diff)
Remove deserialization step
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--src/main.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index fd1f5d5..e0455ca 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -29,8 +29,6 @@ async fn problems<'a>(matches: &ArgMatches<'a>) -> Result<()> {
.perform()
.await
.inspect(|response| log::debug!("Response: {:?}", response))?
- .deserialize::<Vec<Problem>>()
- .inspect(|des| log::debug!("Deserialized: {:?}", des))?
.into_iter()
.for_each(|problem| {
println!("Problem: {:?}", problem);