pub enum StanzaState {
Queued,
Sent {},
Acked {},
Failed {
error: OpaqueIoError,
},
Dropped,
}
Expand description
State of a stanza in transit to the peer.
Variants§
Queued
The stanza has been enqueued in the local queue but not sent yet.
Sent
The stanza has been sent to the server, but there is no proof that it has been received by the server yet.
Acked
Confirmation that the stanza has been seen by the server has been received.
Failed
Sending the stanza has failed in a non-recoverable manner.
Fields
§
error: OpaqueIoError
The error which caused the sending to fail.
Dropped
The stanza was dropped out of the queue for unspecified reasons, such as the stream breaking in a fatal, panick-y way.
Trait Implementations§
Source§impl Clone for StanzaState
impl Clone for StanzaState
Source§fn clone(&self) -> StanzaState
fn clone(&self) -> StanzaState
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 StanzaState
impl Debug for StanzaState
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 PartialEq<StanzaStage> for StanzaState
impl PartialEq<StanzaStage> for StanzaState
Source§impl PartialEq<StanzaState> for StanzaStage
impl PartialEq<StanzaState> for StanzaStage
Source§impl PartialOrd<StanzaStage> for StanzaState
impl PartialOrd<StanzaStage> for StanzaState
Auto Trait Implementations§
impl Freeze for StanzaState
impl RefUnwindSafe for StanzaState
impl Send for StanzaState
impl Sync for StanzaState
impl Unpin for StanzaState
impl UnwindSafe for StanzaState
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