diff options
Diffstat (limited to 'src/vrrpv2.rs')
-rw-r--r-- | src/vrrpv2.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vrrpv2.rs b/src/vrrpv2.rs index ca8eaec..ee2c5f7 100644 --- a/src/vrrpv2.rs +++ b/src/vrrpv2.rs @@ -1,4 +1,3 @@ -use std::fmt::Display; use std::io::Read; use std::io::{self, Cursor}; use std::net::Ipv4Addr; @@ -45,7 +44,7 @@ pub enum VRRPv2Error { ParseError, } -impl Display for VRRPv2Error { +impl std::fmt::Display for VRRPv2Error { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { Self::InvalidAuthType => write!(f, "Invalid Auth Type"), @@ -57,6 +56,8 @@ impl Display for VRRPv2Error { } } +impl std::error::Error for VRRPv2Error {} + #[derive(Debug, PartialEq)] pub enum VRRPv2AuthType { VRRPv2AuthNoAuth = 0x00, |