Lines Matching refs:Binder
87 pub struct Binder { struct
94 impl Binder { implementation
95 pub fn new(host: String, port: u16) -> Binder { in new() argument
97 Binder { in new()
110 ) -> Binder { in with_cred() argument
112 Binder { in with_cred()
140 pub struct Binder { struct
145 impl Binder { impl
146 pub fn new(host: String, port: u16) -> Binder { in new() argument
147 Binder { host, port } in new()
157 use self::imp::Binder; argument
159 impl Debug for Binder { implementation
299 binders: Vec<Binder>,
323 self.binders.push(Binder::new(host.into(), port)); in bind()
398 use super::{Binder, ServerBuilder};
416 .push(Binder::with_cred(host.into(), port, c, None)); in bind_with_cred()
447 .push(Binder::with_cred(host.into(), port, sc, Some(fb))); in bind_with_fetcher()
455 binders: Vec<Binder>,