// Copyright (c) 2024 Cyprien Avico avicocyprien@yahoo.com
//// Licensed under the MIT License <LICENSE-MIT or http://opensource.org/licenses/MIT>.
// This file may not be copied, modified, or distributed except according to those terms.
usethiserror::Error;#[derive(Error, Debug, PartialEq, Eq, Clone, Copy)]pubenumMacParseError{#[error("Invalid MAC address length: expected 6 bytes, found {actual} bytes")]
InvalidLength { actual:usize},}