pub enum WlanRxRequest {
Transfer {
payload: WlanRxTransferRequest,
responder: WlanRxTransferResponder,
},
}
Expand description
Protocol for sending a WLAN frame from the wlansoftmac driver to the bridged 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 WlanRxRequest
impl WlanRxRequest
pub fn into_transfer( self, ) -> Option<(WlanRxTransferRequest, WlanRxTransferResponder)>
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 WlanRxRequest
impl !RefUnwindSafe for WlanRxRequest
impl Send for WlanRxRequest
impl Sync for WlanRxRequest
impl Unpin for WlanRxRequest
impl !UnwindSafe for WlanRxRequest
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