pub trait NetifStatus {
    // Required method
    async fn is_up(&self) -> Result<bool, EspError>;
}

Required Methods§

source

async fn is_up(&self) -> Result<bool, EspError>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> NetifStatus for &T
where T: NetifStatus,

source§

async fn is_up(&self) -> Result<bool, EspError>

source§

impl<T> NetifStatus for &mut T
where T: NetifStatus,

source§

async fn is_up(&self) -> Result<bool, EspError>

Implementors§

source§

impl NetifStatus for EspNetif

source§

impl<'d> NetifStatus for EspWifi<'d>

source§

impl<'d, T> NetifStatus for EspEth<'d, T>

source§

impl<T> NetifStatus for AsyncEth<T>
where T: NetifStatus,

source§

impl<T> NetifStatus for AsyncWifi<T>
where T: NetifStatus,

source§

impl<T> NetifStatus for AsyncNetif<T>
where T: NetifStatus,