pub struct EthBuilder<const TX: usize, const RX: usize, P: PHY> {
pub eth: ETH,
pub pins: EthPins,
pub phy: EthPhy<TX, RX, P>,
}Expand description
eth builder
Fields§
§eth: ETHeth device
pins: EthPinseth pins
phy: EthPhy<TX, RX, P>eth phy
Implementations§
Auto Trait Implementations§
impl<const TX: usize, const RX: usize, P> Freeze for EthBuilder<TX, RX, P>where
P: Freeze,
impl<const TX: usize, const RX: usize, P> !RefUnwindSafe for EthBuilder<TX, RX, P>
impl<const TX: usize, const RX: usize, P> Send for EthBuilder<TX, RX, P>where
P: Send,
impl<const TX: usize, const RX: usize, P> !Sync for EthBuilder<TX, RX, P>
impl<const TX: usize, const RX: usize, P> Unpin for EthBuilder<TX, RX, P>where
P: Unpin,
impl<const TX: usize, const RX: usize, P> !UnwindSafe for EthBuilder<TX, RX, P>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more