pub trait ServerConnector:
Clone
+ Debug
+ Send
+ Unpin
+ 'static {
type Stream: AsyncReadAndWrite;
// Required method
fn connect(
&self,
jid: &Jid,
ns: &'static str,
timeouts: Timeouts,
) -> impl Future<Output = Result<PendingFeaturesRecv<Self::Stream>, Error>> + Send;
// Provided method
fn channel_binding(_stream: &Self::Stream) -> Result<ChannelBinding, Error> { ... }
}
Expand description
Trait called to connect to an XMPP server, perhaps called multiple times
Required Associated Types§
Sourcetype Stream: AsyncReadAndWrite
type Stream: AsyncReadAndWrite
The type of Stream this ServerConnector produces
Required Methods§
Sourcefn connect(
&self,
jid: &Jid,
ns: &'static str,
timeouts: Timeouts,
) -> impl Future<Output = Result<PendingFeaturesRecv<Self::Stream>, Error>> + Send
fn connect( &self, jid: &Jid, ns: &'static str, timeouts: Timeouts, ) -> impl Future<Output = Result<PendingFeaturesRecv<Self::Stream>, Error>> + Send
This must return the connection ready to login, ie if starttls is involved, after TLS has been started, and then after the <stream headers are exchanged
Provided Methods§
Sourcefn channel_binding(_stream: &Self::Stream) -> Result<ChannelBinding, Error>
fn channel_binding(_stream: &Self::Stream) -> Result<ChannelBinding, Error>
Return channel binding data if available do not fail if channel binding is simply unavailable, just return Ok(None) this should only be called after the TLS handshake is finished
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
Source§impl ServerConnector for StartTlsServerConnector
Available on crate feature starttls
only.
impl ServerConnector for StartTlsServerConnector
Available on crate feature
starttls
only.Source§impl ServerConnector for TcpServerConnector
Available on crate feature insecure-tcp
only.
impl ServerConnector for TcpServerConnector
Available on crate feature
insecure-tcp
only.