EthTrait

Trait EthTrait 

Source
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§

Source

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

Source§

fn builder(self, pins: EthPins, phy: EthPhy<TX, RX, P>) -> EthBuilder<TX, RX, P>

Implementors§