pub enum StreamEvent {
Reset {
bound_jid: Jid,
features: StreamFeatures,
},
Suspended,
Resumed,
}
Expand description
Event informing about the change of the StanzaStream
’s status.
Variants§
Reset
The stream was (re-)established with loss of state.
Fields
§
features: StreamFeatures
The features reported by the stream.
Suspended
The stream is currently inactive because a connection was lost.
Resumption without loss of state is still possible. This event is merely informative and may be used to prolong timeouts or inform the user that the connection is currently unstable.
Resumed
The stream was reestablished without loss of state.
This is merely informative. Potentially useful to prolong timeouts.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StreamEvent
impl RefUnwindSafe for StreamEvent
impl Send for StreamEvent
impl Sync for StreamEvent
impl Unpin for StreamEvent
impl UnwindSafe for StreamEvent
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