Add a line in between struct and impl

This commit is contained in:
Tim Kuehn
2016-03-16 20:43:22 -07:00
parent 5d27d34bd3
commit aec1574824

View File

@@ -4,6 +4,7 @@ use std::time::Duration;
/// A transport for TCP.
pub struct TcpTransport<A: ToSocketAddrs>(pub A);
impl<A: ToSocketAddrs> super::Transport for TcpTransport<A> {
type Listener = TcpListener;
fn bind(&self) -> io::Result<TcpListener> {