pub enum WlanFullmacImpl_Request {
Show 27 variants Start { ifc: ClientEnd<WlanFullmacImplIfcMarker>, responder: WlanFullmacImpl_StartResponder, }, Stop { responder: WlanFullmacImpl_StopResponder, }, Query { responder: WlanFullmacImpl_QueryResponder, }, QueryMacSublayerSupport { responder: WlanFullmacImpl_QueryMacSublayerSupportResponder, }, QuerySecuritySupport { responder: WlanFullmacImpl_QuerySecuritySupportResponder, }, QuerySpectrumManagementSupport { responder: WlanFullmacImpl_QuerySpectrumManagementSupportResponder, }, StartScan { payload: WlanFullmacImplStartScanRequest, responder: WlanFullmacImpl_StartScanResponder, }, Connect { payload: WlanFullmacImplConnectRequest, responder: WlanFullmacImpl_ConnectResponder, }, Reconnect { payload: WlanFullmacImplReconnectRequest, responder: WlanFullmacImpl_ReconnectResponder, }, Roam { payload: WlanFullmacImplRoamRequest, responder: WlanFullmacImpl_RoamResponder, }, AuthResp { payload: WlanFullmacImplAuthRespRequest, responder: WlanFullmacImpl_AuthRespResponder, }, Deauth { payload: WlanFullmacImplDeauthRequest, responder: WlanFullmacImpl_DeauthResponder, }, AssocResp { payload: WlanFullmacImplAssocRespRequest, responder: WlanFullmacImpl_AssocRespResponder, }, Disassoc { payload: WlanFullmacImplDisassocRequest, responder: WlanFullmacImpl_DisassocResponder, }, Reset { payload: WlanFullmacImplResetRequest, responder: WlanFullmacImpl_ResetResponder, }, StartBss { payload: WlanFullmacImplStartBssRequest, responder: WlanFullmacImpl_StartBssResponder, }, StopBss { payload: WlanFullmacImplStopBssRequest, responder: WlanFullmacImpl_StopBssResponder, }, SetKeys { payload: WlanFullmacImplSetKeysRequest, responder: WlanFullmacImpl_SetKeysResponder, }, DelKeys { payload: WlanFullmacImplDelKeysRequest, responder: WlanFullmacImpl_DelKeysResponder, }, EapolTx { payload: WlanFullmacImplEapolTxRequest, responder: WlanFullmacImpl_EapolTxResponder, }, GetIfaceCounterStats { responder: WlanFullmacImpl_GetIfaceCounterStatsResponder, }, GetIfaceHistogramStats { responder: WlanFullmacImpl_GetIfaceHistogramStatsResponder, }, SaeHandshakeResp { resp: WlanFullmacSaeHandshakeResp, responder: WlanFullmacImpl_SaeHandshakeRespResponder, }, SaeFrameTx { frame: WlanFullmacSaeFrame, responder: WlanFullmacImpl_SaeFrameTxResponder, }, WmmStatusReq { responder: WlanFullmacImpl_WmmStatusReqResponder, }, SetMulticastPromisc { enable: bool, responder: WlanFullmacImpl_SetMulticastPromiscResponder, }, OnLinkStateChanged { online: bool, responder: WlanFullmacImpl_OnLinkStateChangedResponder, },
}
Expand description

Protocol definition for communication from the platform to the fullmac vendor driver.

Variants§

§

Start

§

Stop

§

Query

§

QueryMacSublayerSupport

§

QuerySecuritySupport

§

QuerySpectrumManagementSupport

§

StartScan

§

Connect

§

Reconnect

§

Roam

Initiate a roam attempt, which moves association to a different BSS within the ESS.

§

AuthResp

§

Deauth

§

AssocResp

§

Disassoc

§

Reset

§

StartBss

§

StopBss

§

SetKeys

§

DelKeys

§

EapolTx

§

GetIfaceCounterStats

§

GetIfaceHistogramStats

§

SaeHandshakeResp

§

SaeFrameTx

§

WmmStatusReq

§

SetMulticastPromisc

§

OnLinkStateChanged

Implementations§

source§

impl WlanFullmacImpl_Request

source

pub fn into_start( self, ) -> Option<(ClientEnd<WlanFullmacImplIfcMarker>, WlanFullmacImpl_StartResponder)>

source

pub fn into_stop(self) -> Option<WlanFullmacImpl_StopResponder>

source

pub fn into_query(self) -> Option<WlanFullmacImpl_QueryResponder>

source

pub fn into_query_mac_sublayer_support( self, ) -> Option<WlanFullmacImpl_QueryMacSublayerSupportResponder>

source

pub fn into_query_security_support( self, ) -> Option<WlanFullmacImpl_QuerySecuritySupportResponder>

source

pub fn into_query_spectrum_management_support( self, ) -> Option<WlanFullmacImpl_QuerySpectrumManagementSupportResponder>

source

pub fn into_start_scan( self, ) -> Option<(WlanFullmacImplStartScanRequest, WlanFullmacImpl_StartScanResponder)>

source

pub fn into_connect( self, ) -> Option<(WlanFullmacImplConnectRequest, WlanFullmacImpl_ConnectResponder)>

source

pub fn into_reconnect( self, ) -> Option<(WlanFullmacImplReconnectRequest, WlanFullmacImpl_ReconnectResponder)>

source

pub fn into_roam( self, ) -> Option<(WlanFullmacImplRoamRequest, WlanFullmacImpl_RoamResponder)>

source

pub fn into_auth_resp( self, ) -> Option<(WlanFullmacImplAuthRespRequest, WlanFullmacImpl_AuthRespResponder)>

source

pub fn into_deauth( self, ) -> Option<(WlanFullmacImplDeauthRequest, WlanFullmacImpl_DeauthResponder)>

source

pub fn into_assoc_resp( self, ) -> Option<(WlanFullmacImplAssocRespRequest, WlanFullmacImpl_AssocRespResponder)>

source

pub fn into_disassoc( self, ) -> Option<(WlanFullmacImplDisassocRequest, WlanFullmacImpl_DisassocResponder)>

source

pub fn into_reset( self, ) -> Option<(WlanFullmacImplResetRequest, WlanFullmacImpl_ResetResponder)>

source

pub fn into_start_bss( self, ) -> Option<(WlanFullmacImplStartBssRequest, WlanFullmacImpl_StartBssResponder)>

source

pub fn into_stop_bss( self, ) -> Option<(WlanFullmacImplStopBssRequest, WlanFullmacImpl_StopBssResponder)>

source

pub fn into_set_keys( self, ) -> Option<(WlanFullmacImplSetKeysRequest, WlanFullmacImpl_SetKeysResponder)>

source

pub fn into_del_keys( self, ) -> Option<(WlanFullmacImplDelKeysRequest, WlanFullmacImpl_DelKeysResponder)>

source

pub fn into_eapol_tx( self, ) -> Option<(WlanFullmacImplEapolTxRequest, WlanFullmacImpl_EapolTxResponder)>

source

pub fn into_get_iface_counter_stats( self, ) -> Option<WlanFullmacImpl_GetIfaceCounterStatsResponder>

source

pub fn into_get_iface_histogram_stats( self, ) -> Option<WlanFullmacImpl_GetIfaceHistogramStatsResponder>

source

pub fn into_sae_handshake_resp( self, ) -> Option<(WlanFullmacSaeHandshakeResp, WlanFullmacImpl_SaeHandshakeRespResponder)>

source

pub fn into_sae_frame_tx( self, ) -> Option<(WlanFullmacSaeFrame, WlanFullmacImpl_SaeFrameTxResponder)>

source

pub fn into_wmm_status_req( self, ) -> Option<WlanFullmacImpl_WmmStatusReqResponder>

source

pub fn into_set_multicast_promisc( self, ) -> Option<(bool, WlanFullmacImpl_SetMulticastPromiscResponder)>

source

pub fn method_name(&self) -> &'static str

Name of the method defined in FIDL

Trait Implementations§

source§

impl Debug for WlanFullmacImpl_Request

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T, D> Encode<Ambiguous1, D> for T
where D: ResourceDialect,

§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
§

impl<T, D> Encode<Ambiguous2, D> for T
where D: ResourceDialect,

§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more