pub trait Miim {
// Required methods
fn read(&mut self, phy: u8, reg: u8) -> u16;
fn write(&mut self, phy: u8, reg: u8, data: u16);
}
Expand description
A trait used for implementing access to the Media Indepedent Interface of an IEEE 802.3 compatible PHY.