pub enum WlantapPhyEvent {
Tx {
args: TxArgs,
},
WlanSoftmacStart {},
SetChannel {
args: SetChannelArgs,
},
JoinBss {
args: JoinBssArgs,
},
StartScan {
args: StartScanArgs,
},
SetKey {
args: SetKeyArgs,
},
SetCountry {
args: SetCountryArgs,
},
}
Variants§
Tx
WlanSoftmacStart
SetChannel
Fields
§
args: SetChannelArgs
JoinBss
Fields
§
args: JoinBssArgs
StartScan
Fields
§
args: StartScanArgs
SetKey
Fields
§
args: SetKeyArgs
SetCountry
Fields
§
args: SetCountryArgs
Implementations§
Source§impl WlantapPhyEvent
impl WlantapPhyEvent
pub fn into_tx(self) -> Option<TxArgs>
pub fn into_wlan_softmac_start(self) -> Option<()>
pub fn into_set_channel(self) -> Option<SetChannelArgs>
pub fn into_join_bss(self) -> Option<JoinBssArgs>
pub fn into_start_scan(self) -> Option<StartScanArgs>
pub fn into_set_key(self) -> Option<SetKeyArgs>
pub fn into_set_country(self) -> Option<SetCountryArgs>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WlantapPhyEvent
impl RefUnwindSafe for WlantapPhyEvent
impl Send for WlantapPhyEvent
impl Sync for WlantapPhyEvent
impl Unpin for WlantapPhyEvent
impl UnwindSafe for WlantapPhyEvent
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