Trait tokio_xmpp::connect::ServerConnector

source ·
pub trait ServerConnector: Clone + Debug + Send + Unpin + 'static {
    type Stream: AsyncReadAndWrite;
    type Error: ServerConnectorError;

    // Required method
    fn connect(
        &self,
        jid: &Jid,
        ns: &str
    ) -> impl Future<Output = Result<XMPPStream<Self::Stream>, Self::Error>> + Send;

    // Provided method
    fn channel_binding(
        _stream: &Self::Stream
    ) -> Result<ChannelBinding, Self::Error> { ... }
}
Expand description

Trait called to connect to an XMPP server, perhaps called multiple times

Required Associated Types§

source

type Stream: AsyncReadAndWrite

The type of Stream this ServerConnector produces

source

type Error: ServerConnectorError

Error type to return

Required Methods§

source

fn connect( &self, jid: &Jid, ns: &str ) -> impl Future<Output = Result<XMPPStream<Self::Stream>, Self::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§

source

fn channel_binding( _stream: &Self::Stream ) -> Result<ChannelBinding, Self::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§