1use alloc::string::String; 2 3/// The `mac_address` validator will implement this for its types. 4pub trait ToMacAddressString { 5 /// Retrieve the mac address as a string. 6 fn to_mac_address_string(&self) -> String; 7}