pub enum Stanza {
Iq(Iq),
Message(Message),
Presence(Presence),
}
Expand description
A stanza sent/received over the stream.
Variants§
Implementations§
Trait Implementations§
Source§impl From<Stanza> for XmppStreamElement
impl From<Stanza> for XmppStreamElement
Source§impl<C: ServerConnector> Sink<Stanza> for Component<C>
Available on crate feature insecure-tcp
only.
impl<C: ServerConnector> Sink<Stanza> for Component<C>
Available on crate feature
insecure-tcp
only.Source§fn start_send(self: Pin<&mut Self>, item: Stanza) -> Result<(), Self::Error>
fn start_send(self: Pin<&mut Self>, item: Stanza) -> 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 moreAuto Trait Implementations§
impl Freeze for Stanza
impl RefUnwindSafe for Stanza
impl Send for Stanza
impl Sync for Stanza
impl Unpin for Stanza
impl UnwindSafe for Stanza
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