From 4f6e6185fc78cfbb5f3eb053c03aea790a1b0a6e Mon Sep 17 00:00:00 2001 From: Alexis Mousset Date: Wed, 4 May 2016 00:01:13 +0200 Subject: [PATCH] Do not use default type parameter in impl --- src/transport/smtp/client/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/transport/smtp/client/mod.rs b/src/transport/smtp/client/mod.rs index a7712c4..81021cf 100644 --- a/src/transport/smtp/client/mod.rs +++ b/src/transport/smtp/client/mod.rs @@ -57,7 +57,7 @@ macro_rules! return_err ( }) ); -impl Client { +impl Client { /// Creates a new SMTP client /// /// It does not connects to the server, but only creates the `Client` @@ -66,7 +66,7 @@ impl Client { } } -impl Client { +impl Client { /// Closes the SMTP transaction if possible pub fn close(&mut self) { let _ = self.quit();