Enum tokio_xmpp::Packet
source · pub enum Packet {
StreamStart(HashMap<String, String>),
Stanza(Element),
Text(String),
StreamEnd,
}
Expand description
Anything that can be sent or received on an XMPP/XML stream
Variants§
StreamStart(HashMap<String, String>)
<stream:stream>
start tag
Stanza(Element)
A complete stanza or nonza
Text(String)
Plain text (think whitespace keep-alive)
StreamEnd
</stream:stream>
closing tag
Trait Implementations§
source§impl PartialEq for Packet
impl PartialEq for Packet
source§impl<C: ServerConnector> Sink<Packet> for Client<C>
impl<C: ServerConnector> Sink<Packet> for Client<C>
Outgoing XMPP packets
See send_stanza()
for an async fn
source§fn start_send(self: Pin<&mut Self>, item: Packet) -> Result<(), Self::Error>
fn start_send(self: Pin<&mut Self>, item: Packet) -> Result<(), Self::Error>
Begin the process of sending a value to the sink.
Each call to this function must be preceded by a successful call to
poll_ready
which returned Poll::Ready(Ok(()))
. Read moresource§fn poll_ready(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>
fn poll_ready( self: Pin<&mut Self>, cx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>
Attempts to prepare the
Sink
to receive a value. Read moresource§impl<C: ServerConnector> Sink<Packet> for Client<C>
impl<C: ServerConnector> Sink<Packet> for Client<C>
Outgoing XMPP packets
See send_stanza()
for an async fn
source§fn start_send(self: Pin<&mut Self>, item: Packet) -> Result<(), Self::Error>
fn start_send(self: Pin<&mut Self>, item: Packet) -> Result<(), Self::Error>
Begin the process of sending a value to the sink.
Each call to this function must be preceded by a successful call to
poll_ready
which returned Poll::Ready(Ok(()))
. Read moresource§fn poll_ready(
self: Pin<&mut Self>,
cx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>
fn poll_ready( self: Pin<&mut Self>, cx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>
Attempts to prepare the
Sink
to receive a value. Read moresource§impl<S: AsyncRead + AsyncWrite + Unpin> Sink<Packet> for XMPPStream<S>
impl<S: AsyncRead + AsyncWrite + Unpin> Sink<Packet> for XMPPStream<S>
Proxy to self.stream
source§fn poll_ready(
self: Pin<&mut Self>,
_ctx: &mut Context<'_>
) -> Poll<Result<(), Self::Error>>
fn poll_ready( self: Pin<&mut Self>, _ctx: &mut Context<'_> ) -> Poll<Result<(), Self::Error>>
Attempts to prepare the
Sink
to receive a value. Read moresource§fn start_send(self: Pin<&mut Self>, item: Packet) -> Result<(), Self::Error>
fn start_send(self: Pin<&mut Self>, item: Packet) -> Result<(), Self::Error>
Begin the process of sending a value to the sink.
Each call to this function must be preceded by a successful call to
poll_ready
which returned Poll::Ready(Ok(()))
. Read moreimpl Eq for Packet
impl StructuralPartialEq for Packet
Auto Trait Implementations§
impl Freeze for Packet
impl RefUnwindSafe for Packet
impl Send for Packet
impl Sync for Packet
impl Unpin for Packet
impl UnwindSafe for Packet
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