Struct tokio_xmpp::xmlstream::Timeouts
source · pub struct Timeouts {
pub read_timeout: Duration,
pub response_timeout: Duration,
}
Expand description
Configuration for timeouts on an XML stream.
The defaults are tuned toward common desktop/laptop use and may not hold up to extreme conditions (arctic satellite link, mobile internet on a train in Brandenburg, Germany, and similar) and may be inefficient in other conditions (stable server link, localhost communication).
Fields§
§read_timeout: Duration
Maximum silence time before a
ReadError::SoftTimeout
is
returned.
Soft timeouts are not fatal, but they must be handled by user code so
that more data is read after at most Self::response_timeout
,
starting from the moment the soft timeout is returned.
response_timeout: Duration
Maximum silence after a soft timeout.
If the stream is silent for longer than this time after a soft timeout
has been emitted, a hard TimedOut
I/O error is returned and the stream is to be considered dead.
Implementations§
Trait Implementations§
impl Copy for Timeouts
Auto Trait Implementations§
impl Freeze for Timeouts
impl RefUnwindSafe for Timeouts
impl Send for Timeouts
impl Sync for Timeouts
impl Unpin for Timeouts
impl UnwindSafe for Timeouts
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)