# HG changeset patch # User Sunil Nimmagadda # Date 1716709791 -19800 # Node ID 277a2f8b3653cd73c9c32e419532c6477dcc3ef5 # Parent 31219e9f8a9e69af4c50a2a484000f411fef3b01 Make VRRPv2Error std::error::Error trait compliant. diff -r 31219e9f8a9e -r 277a2f8b3653 src/vrrpv2.rs --- a/src/vrrpv2.rs Tue Apr 23 20:08:02 2024 +0530 +++ b/src/vrrpv2.rs Sun May 26 13:19:51 2024 +0530 @@ -1,3 +1,4 @@ +use std::fmt::Display; use std::io::Read; use std::io::{self, Cursor}; use std::net::Ipv4Addr; @@ -44,6 +45,18 @@ ParseError, } +impl Display for VRRPv2Error { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + match self { + Self::InvalidAuthType => write!(f, "Invalid Auth Type"), + Self::InvalidChecksum => write!(f, "Invalid Checksum"), + Self::InvalidType => write!(f, "Invalid Type"), + Self::InvalidVersion => write!(f, "Invalid Version"), + Self::ParseError => write!(f, "Parse Error"), + } + } +} + #[derive(Debug, PartialEq)] pub enum VRRPv2AuthType { VRRPv2AuthNoAuth = 0x00,