pub struct PartsIn {
pub mac: ETHERNET_MAC,
pub mmc: ETHERNET_MMC,
pub dma: ETHERNET_DMA,
pub ptp: ETHERNET_PTP,
}Expand description
A struct that contains all peripheral parts required to configure the ethernet peripheral.
Fields§
§mac: ETHERNET_MAC§mmc: ETHERNET_MMC§dma: ETHERNET_DMA§ptp: ETHERNET_PTPTrait Implementations§
source§impl From<(ETHERNET_MAC, ETHERNET_MMC, ETHERNET_DMA, ETHERNET_PTP)> for PartsIn
impl From<(ETHERNET_MAC, ETHERNET_MMC, ETHERNET_DMA, ETHERNET_PTP)> for PartsIn
source§fn from(value: (ETHERNET_MAC, ETHERNET_MMC, ETHERNET_DMA, ETHERNET_PTP)) -> Self
fn from(value: (ETHERNET_MAC, ETHERNET_MMC, ETHERNET_DMA, ETHERNET_PTP)) -> Self
Converts to this type from the input type.