summaryrefslogtreecommitdiff
path: root/src/client.rs
diff options
context:
space:
mode:
authorDavid Blajda <blajda@hotmail.com>2018-12-30 20:08:09 +0000
committerDavid Blajda <blajda@hotmail.com>2018-12-30 20:08:09 +0000
commit70629ed0dc950d4f1c83ef15a6b4b65700338d3d (patch)
tree0060290b9d1a5b19e137a31ba387150fccff639e /src/client.rs
parent96a500350c29106e87bc22839c502e98459b4cb0 (diff)
:WIP: Reworking types
Diffstat (limited to 'src/client.rs')
-rw-r--r--src/client.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client.rs b/src/client.rs
index 3371670..66f32d6 100644
--- a/src/client.rs
+++ b/src/client.rs
@@ -882,6 +882,7 @@ impl<T: DeserializeOwned + 'static + Send> Future for ApiRequest<T> {
err
})
.map(move |mut response| {
+ println!("{:?}", response);
if let Some(key) = key_ok {
if let Some(limits) = client_ok.ratelimit(key) {
let mut mut_limits = limits.inner.lock().unwrap();