|
@@ -24,6 +24,18 @@ pub enum BindError {
|
|
|
Unaddressable,
|
|
|
}
|
|
|
|
|
|
+impl core::fmt::Display for BindError {
|
|
|
+ fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
|
|
|
+ match self {
|
|
|
+ BindError::InvalidState => write!(f, "invalid state"),
|
|
|
+ BindError::Unaddressable => write!(f, "unaddressable"),
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#[cfg(feature = "std")]
|
|
|
+impl std::error::Error for BindError {}
|
|
|
+
|
|
|
/// Error returned by [`Socket::send`]
|
|
|
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
@@ -32,6 +44,18 @@ pub enum SendError {
|
|
|
BufferFull,
|
|
|
}
|
|
|
|
|
|
+impl core::fmt::Display for SendError {
|
|
|
+ fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
|
|
|
+ match self {
|
|
|
+ SendError::Unaddressable => write!(f, "unaddressable"),
|
|
|
+ SendError::BufferFull => write!(f, "buffer full"),
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#[cfg(feature = "std")]
|
|
|
+impl std::error::Error for SendError {}
|
|
|
+
|
|
|
/// Error returned by [`Socket::recv`]
|
|
|
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
@@ -39,6 +63,17 @@ pub enum RecvError {
|
|
|
Exhausted,
|
|
|
}
|
|
|
|
|
|
+impl core::fmt::Display for RecvError {
|
|
|
+ fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
|
|
|
+ match self {
|
|
|
+ RecvError::Exhausted => write!(f, "exhausted"),
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#[cfg(feature = "std")]
|
|
|
+impl std::error::Error for RecvError {}
|
|
|
+
|
|
|
/// Type of endpoint to bind the ICMP socket to. See [IcmpSocket::bind] for
|
|
|
/// more details.
|
|
|
///
|