pub enum StanzaStage {
Queued,
Sent,
Acked,
Failed,
Dropped,
}
Expand description
The five stages of stanza transmission.
Variants§
Queued
The stanza is in the transmit queue, but has not been serialised or sent to the stream yet.
Sent
The stanza was successfully serialised and put into the transmit buffers.
Acked
The stanza has been acked by the peer using XEP-0198 or comparable means.
Note: This state is only ever reached on streams where XEP-0198 was succesfully negotiated.
Failed
Stanza transmission or serialisation failed.
Dropped
The stanza was dropped from the transmit queue before it could be sent.
This may happen if the stream breaks in a fatal, panick-y way.
Trait Implementations§
Source§impl Clone for StanzaStage
impl Clone for StanzaStage
Source§fn clone(&self) -> StanzaStage
fn clone(&self) -> StanzaStage
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 StanzaStage
impl Debug for StanzaStage
Source§impl From<&StanzaState> for StanzaStage
impl From<&StanzaState> for StanzaStage
Source§fn from(other: &StanzaState) -> Self
fn from(other: &StanzaState) -> Self
Converts to this type from the input type.
Source§impl Ord for StanzaStage
impl Ord for StanzaStage
Source§fn cmp(&self, other: &StanzaStage) -> Ordering
fn cmp(&self, other: &StanzaStage) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq<StanzaStage> for StanzaState
impl PartialEq<StanzaStage> for StanzaState
Source§impl PartialEq<StanzaState> for StanzaStage
impl PartialEq<StanzaState> for StanzaStage
Source§impl PartialEq for StanzaStage
impl PartialEq for StanzaStage
Source§impl PartialOrd<StanzaStage> for StanzaState
impl PartialOrd<StanzaStage> for StanzaState
Source§impl PartialOrd<StanzaState> for StanzaStage
impl PartialOrd<StanzaState> for StanzaStage
Source§impl PartialOrd for StanzaStage
impl PartialOrd for StanzaStage
impl Copy for StanzaStage
impl Eq for StanzaStage
impl StructuralPartialEq for StanzaStage
Auto Trait Implementations§
impl Freeze for StanzaStage
impl RefUnwindSafe for StanzaStage
impl Send for StanzaStage
impl Sync for StanzaStage
impl Unpin for StanzaStage
impl UnwindSafe for StanzaStage
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§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.