pub struct Connection {
pub stream: XmppStream,
pub features: StreamFeatures,
pub identity: Jid,
}
Expand description
Underlying connection for a StanzaStream
.
Fields§
§stream: XmppStream
The stream to use to send and receive XMPP data.
features: StreamFeatures
The stream features offered by the peer.
identity: Jid
The identity to which this stream belongs.
Note that connectors must not return bound streams. However, the Jid
may still be a full jid in order to request a specific resource at
bind time. If identity
is a bare JID, the peer will assign the
resource.
Auto Trait Implementations§
impl Freeze for Connection
impl !RefUnwindSafe for Connection
impl Send for Connection
impl !Sync for Connection
impl Unpin for Connection
impl !UnwindSafe for Connection
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