pub enum WlanTxRequest {
Transfer {
payload: WlanTxTransferRequest,
responder: WlanTxTransferResponder,
},
}
Expand description
Protocol for sending a WLAN frame from the bridged wlansoftmac driver to the wlansoftmac driver.
§Experimental
This protocol is implemented as a foreign function interface (FFI) between the wlansoftmac driver and the bridged driver solely to improve the performance of processing data frames through the wlan-mlme library.
Variants§
Transfer
Implementations§
Source§impl WlanTxRequest
impl WlanTxRequest
pub fn into_transfer( self, ) -> Option<(WlanTxTransferRequest, WlanTxTransferResponder)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WlanTxRequest
impl !RefUnwindSafe for WlanTxRequest
impl Send for WlanTxRequest
impl Sync for WlanTxRequest
impl Unpin for WlanTxRequest
impl !UnwindSafe for WlanTxRequest
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