1use net_types::ip::{GenericOverIp, Ip};
8use packet::Nested;
9use thiserror::Error;
10
11#[derive(Debug, PartialEq, Eq, Error, GenericOverIp)]
13#[generic_over_ip()]
14#[error("not supported")]
15pub struct NotSupportedError;
16
17#[derive(Debug, Error, PartialEq, Eq)]
19#[error("already exists")]
20pub struct ExistsError;
21
22impl From<ExistsError> for SocketError {
23 fn from(_: ExistsError) -> SocketError {
24 SocketError::Local(LocalAddressError::AddressInUse)
25 }
26}
27
28#[derive(Debug, Error, PartialEq, Eq)]
31#[error("not found")]
32pub struct NotFoundError;
33
34#[derive(Error, Debug, PartialEq, GenericOverIp)]
36#[generic_over_ip()]
37pub enum LocalAddressError {
38 #[error("can't bind to address")]
40 CannotBindToAddress,
41
42 #[error("failed to allocate local port")]
44 FailedToAllocateLocalPort,
45
46 #[error("specified local address does not match any expected address")]
48 AddressMismatch,
49
50 #[error("address in use")]
52 AddressInUse,
53
54 #[error(transparent)]
59 Zone(#[from] ZonedAddressError),
60
61 #[error("address is mapped")]
64 AddressUnexpectedlyMapped,
65}
66
67#[derive(Copy, Clone, Debug, Error, Eq, PartialEq, GenericOverIp)]
69#[generic_over_ip()]
70pub enum ZonedAddressError {
71 #[error("the address requires a zone but didn't have one")]
73 RequiredZoneNotProvided,
74 #[error("the socket's device does not match the zone")]
76 DeviceZoneMismatch,
77}
78
79#[derive(Error, Debug, PartialEq)]
81pub enum RemoteAddressError {
82 #[error("no route to host")]
84 NoRoute,
85}
86
87#[derive(Error, Debug, PartialEq)]
89pub enum SocketError {
90 #[error(transparent)]
92 Local(#[from] LocalAddressError),
93
94 #[error(transparent)]
96 Remote(RemoteAddressError),
97}
98
99#[derive(Error, Debug, PartialEq)]
101#[error("address resolution failed")]
102pub struct AddressResolutionFailed;
103
104#[derive(Debug, PartialEq, Eq)]
113pub struct ErrorAndSerializer<E, S> {
114 pub error: E,
116 pub serializer: S,
118}
119
120impl<E, S> ErrorAndSerializer<E, S> {
121 pub fn map_serializer<N, F: FnOnce(S) -> N>(self, f: F) -> ErrorAndSerializer<E, N> {
123 let Self { error, serializer } = self;
124 ErrorAndSerializer { error, serializer: f(serializer) }
125 }
126
127 pub fn map_err<N, F: FnOnce(E) -> N>(self, f: F) -> ErrorAndSerializer<N, S> {
129 let Self { error, serializer } = self;
130 ErrorAndSerializer { error: f(error), serializer }
131 }
132
133 pub fn err_into<N: From<E>>(self) -> ErrorAndSerializer<N, S> {
135 self.map_err(Into::into)
136 }
137
138 pub fn into_err(self) -> E {
140 self.error
141 }
142}
143
144impl<E, I, O> ErrorAndSerializer<E, Nested<I, O>> {
145 pub fn into_inner(self) -> ErrorAndSerializer<E, I> {
149 self.map_serializer(|s| s.into_inner())
150 }
151}