Struct tokio_xmpp::connect::starttls::StartTlsServerConnector
source · pub struct StartTlsServerConnector(pub DnsConfig);
Available on crate feature
starttls
only.Expand description
Connect via TCP+StartTLS to an XMPP server
Tuple Fields§
§0: DnsConfig
Trait Implementations§
source§impl Clone for StartTlsServerConnector
impl Clone for StartTlsServerConnector
source§fn clone(&self) -> StartTlsServerConnector
fn clone(&self) -> StartTlsServerConnector
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for StartTlsServerConnector
impl Debug for StartTlsServerConnector
source§impl From<DnsConfig> for StartTlsServerConnector
impl From<DnsConfig> for StartTlsServerConnector
source§fn from(dns_config: DnsConfig) -> StartTlsServerConnector
fn from(dns_config: DnsConfig) -> StartTlsServerConnector
Converts to this type from the input type.
source§impl ServerConnector for StartTlsServerConnector
impl ServerConnector for StartTlsServerConnector
source§async fn connect(
&self,
jid: &Jid,
ns: &str,
) -> Result<XmppStream<Self::Stream>, Error>
async fn connect( &self, jid: &Jid, ns: &str, ) -> Result<XmppStream<Self::Stream>, Error>
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
source§fn 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
Auto Trait Implementations§
impl Freeze for StartTlsServerConnector
impl RefUnwindSafe for StartTlsServerConnector
impl Send for StartTlsServerConnector
impl Sync for StartTlsServerConnector
impl Unpin for StartTlsServerConnector
impl UnwindSafe for StartTlsServerConnector
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)