pub trait NetifStatus {
// Required method
fn is_up(&self) -> Result<bool, EspError>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl<T> NetifStatus for &Twhere
T: NetifStatus,
impl<T> NetifStatus for &Twhere
T: NetifStatus,
Source§impl<T> NetifStatus for &mut Twhere
T: NetifStatus,
impl<T> NetifStatus for &mut Twhere
T: NetifStatus,
Implementors§
impl NetifStatus for EspNetif
impl NetifStatus for EspWifi<'_>
Available on
esp_idf_comp_esp_netif_enabled only.impl<T> NetifStatus for BlockingEth<T>where
T: NetifStatus,
Available on
esp_idf_comp_esp_netif_enabled only.impl<T> NetifStatus for BlockingNetif<T>where
T: NetifStatus,
impl<T> NetifStatus for BlockingWifi<T>where
T: NetifStatus,
Available on
esp_idf_comp_esp_netif_enabled only.impl<T> NetifStatus for EspEth<'_, T>
Available on
esp_idf_comp_esp_netif_enabled only.