1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Copyright Open Logistics Foundation
//
// Licensed under the Open Logistics Foundation License 1.3.
// For details on the licensing terms, see the LICENSE file.
// SPDX-License-Identifier: OLFL-1.3
//! Error used by the CoAP-Zero [Endpoint](super::CoapEndpoint)
//!
//! Wraps underlying errors and defines own error cases that can occur in the Endpoint
use cratemessage;
/// Endpoint Error
///
/// This error type only covers things that went wrong on our side and that the endpoint could not
/// possibly handle in any meaningful way. For example, ill-formatted messages, messages arriving at
/// the wrong time, messages which lack context or CoAP protocol timeouts are expected, handled
/// automatically by the endpoint and only generate an "event" instead.