[][src]Struct wifi_nina::Client

pub struct Client<T> { /* fields omitted */ }

Implementations

impl<T> Client<T> where
    T: Transport
[src]

pub fn connect_ipv4(
    &mut self,
    wifi: &mut Wifi<T>,
    ip: Ipv4Addr,
    port: u16,
    protocol_mode: ProtocolMode
) -> Result<(), Error<T::Error>>
[src]

pub fn send(
    &mut self,
    wifi: &mut Wifi<T>,
    data: &[u8]
) -> Result<usize, Error<T::Error>>
[src]

pub fn send_all(
    &mut self,
    wifi: &mut Wifi<T>,
    data: &[u8]
) -> Result<(), Error<T::Error>>
[src]

pub fn state(&mut self, wifi: &mut Wifi<T>) -> Result<TcpState, Error<T::Error>>[src]

pub fn recv(
    &mut self,
    wifi: &mut Wifi<T>,
    data: &mut [u8]
) -> Result<usize, Error<T::Error>>
[src]

pub fn recv_exact(
    &mut self,
    wifi: &mut Wifi<T>,
    data: &mut [u8]
) -> Result<(), Error<T::Error>>
[src]

Trait Implementations

impl<T: Debug> Debug for Client<T>[src]

Auto Trait Implementations

impl<T> Send for Client<T> where
    T: Send

impl<T> Sync for Client<T> where
    T: Sync

impl<T> Unpin for Client<T> where
    T: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.