sealrs 0.13.2

Set of classic asynchronous primitives (Actors, Executors, Futures / Promises)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Delivery errors

#[derive(Debug)]
pub struct DeliveryError {
    pub reason: DeliveryErrorReason
}

#[derive(Debug, Eq, PartialEq)]
pub enum DeliveryErrorReason {
    SerializationError,
    ConnectionLost,
    NetworkError
}