[][src]Trait w5500::IntoUdpSocket

pub trait IntoUdpSocket<SpiError> {
    fn try_into_udp_server_socket(
        self,
        port: u16
    ) -> Result<UdpSocket, SpiError>
    where
        Self: Sized
; }

Required methods

fn try_into_udp_server_socket(self, port: u16) -> Result<UdpSocket, SpiError> where
    Self: Sized

Loading content...

Implementors

impl<'_, '_, '_, ChipSelect: OutputPin, Spi: FullDuplex<u8>> IntoUdpSocket<UninitializedSocket> for (&'_ mut ActiveW5500<'_, '_, ChipSelect, Spi>, UninitializedSocket)[src]

fn try_into_udp_server_socket(
    self,
    port: u16
) -> Result<UdpSocket, UninitializedSocket>
[src]

Initialize a socket to operate in UDP mode

Loading content...