pub enum CentralOpMode {
EspNow(EspNowConfig),
WifiStation(WifiStationConfig),
}Expand description
Central node operational modes.
Variants§
EspNow(EspNowConfig)
Drive an ESP-NOW exchange with a peripheral node.
WifiStation(WifiStationConfig)
Associate as a Wi-Fi station to harvest CSI from received frames.
Auto Trait Implementations§
impl Freeze for CentralOpMode
impl RefUnwindSafe for CentralOpMode
impl Send for CentralOpMode
impl Sync for CentralOpMode
impl Unpin for CentralOpMode
impl UnsafeUnpin for CentralOpMode
impl UnwindSafe for CentralOpMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more