pub enum EthernetRxRequest {
Transfer {
payload: EthernetRxTransferRequest,
responder: EthernetRxTransferResponder,
},
}
Expand description
Protocol for sending an Ethernet 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 EthernetRxRequest
impl EthernetRxRequest
pub fn into_transfer( self, ) -> Option<(EthernetRxTransferRequest, EthernetRxTransferResponder)>
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 EthernetRxRequest
impl !RefUnwindSafe for EthernetRxRequest
impl Send for EthernetRxRequest
impl Sync for EthernetRxRequest
impl Unpin for EthernetRxRequest
impl !UnwindSafe for EthernetRxRequest
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