pub trait EthTrait<const TX: usize, const RX: usize, P: PHY> {
// Required method
fn builder(
self,
pins: EthPins,
phy: EthPhy<TX, RX, P>,
) -> EthBuilder<TX, RX, P>;
}Expand description
eth trait
Required Methods§
Sourcefn builder(self, pins: EthPins, phy: EthPhy<TX, RX, P>) -> EthBuilder<TX, RX, P>
fn builder(self, pins: EthPins, phy: EthPhy<TX, RX, P>) -> EthBuilder<TX, RX, P>
create eth builder
Implementations on Foreign Types§
Source§impl<const TX: usize, const RX: usize, P: PHY> EthTrait<TX, RX, P> for ETH
eth support eth trait
impl<const TX: usize, const RX: usize, P: PHY> EthTrait<TX, RX, P> for ETH
eth support eth trait