Searched defs:ConnectInfo (Results 1 – 4 of 4) sorted by relevance
55 type ConnectInfo: Clone + Send + Sync + 'static; typedef58 fn connect_info(&self) -> Self::ConnectInfo; in connect_info()90 type ConnectInfo = TcpConnectInfo; typedef92 fn connect_info(&self) -> Self::ConnectInfo { in connect_info()101 type ConnectInfo = TcpConnectInfo; typedef103 fn connect_info(&self) -> Self::ConnectInfo { in connect_info()112 type ConnectInfo = (); typedef114 fn connect_info(&self) -> Self::ConnectInfo {} in connect_info()122 type ConnectInfo = TlsConnectInfo<T::ConnectInfo>; typedef124 fn connect_info(&self) -> Self::ConnectInfo { in connect_info()
23 type ConnectInfo = UdsConnectInfo; typedef25 fn connect_info(&self) -> Self::ConnectInfo { in connect_info()
33 type ConnectInfo = NoneConnectInfo; typedef35 fn connect_info(&self) -> Self::ConnectInfo { in connect_info()
129 pub struct ConnectInfo<T>(pub T); struct132 impl<S, T> FromRequestParts<S> for ConnectInfo<T> implementation