aboutsummaryrefslogtreecommitdiffstats
path: root/src/types/bind.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/bind.rs')
-rw-r--r--src/types/bind.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/types/bind.rs b/src/types/bind.rs
index fcc38c8..3d3f187 100644
--- a/src/types/bind.rs
+++ b/src/types/bind.rs
@@ -20,9 +20,4 @@ pub trait Bind: Send + Sync + 'static {
/* Until Rust gets type equality constraints these have to be generic */
type Writer: Writer<Self::Endpoint>;
type Reader: Reader<Self::Endpoint>;
-
- /* Used to close the reader/writer when binding to a new port */
- type Closer;
-
- fn bind(port: u16) -> Result<(Self::Reader, Self::Writer, Self::Closer, u16), Self::Error>;
}