Trait tokio_xmpp::connect::ServerConnector
source · pub trait ServerConnector:
Clone
+ Debug
+ Send
+ Unpin
+ 'static {
type Stream: AsyncReadAndWrite;
// Required method
fn connect(
&self,
jid: &Jid,
ns: &str,
) -> impl Future<Output = Result<XMPPStream<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§
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
Object Safety§
This trait is not object safe.
Implementors§
source§impl ServerConnector for ServerConfig
Available on crate feature starttls
only.
impl ServerConnector for ServerConfig
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.