From ada1ecef5fd8a68f8c4a3e12d1b21c66309afc80 Mon Sep 17 00:00:00 2001 From: Vadim Petrochenkov Date: Thu, 6 Oct 2016 01:13:37 +0300 Subject: [PATCH] Fix illegal default type parameters --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9674bf1..f84eddb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -175,7 +175,7 @@ pub struct Future { read: bool } -impl Future +impl Future where T: Send + 'static, E: Send + 'static {