pub enum WlanFullmacImplIfcRequest {
Show 22 variants OnScanResult { payload: WlanFullmacImplIfcOnScanResultRequest, responder: WlanFullmacImplIfcOnScanResultResponder, }, OnScanEnd { payload: WlanFullmacImplIfcOnScanEndRequest, responder: WlanFullmacImplIfcOnScanEndResponder, }, ConnectConf { payload: WlanFullmacImplIfcConnectConfRequest, responder: WlanFullmacImplIfcConnectConfResponder, }, RoamConf { payload: WlanFullmacImplIfcRoamConfRequest, responder: WlanFullmacImplIfcRoamConfResponder, }, RoamStartInd { payload: WlanFullmacImplIfcRoamStartIndRequest, responder: WlanFullmacImplIfcRoamStartIndResponder, }, RoamResultInd { payload: WlanFullmacImplIfcRoamResultIndRequest, responder: WlanFullmacImplIfcRoamResultIndResponder, }, AuthInd { resp: WlanFullmacAuthInd, responder: WlanFullmacImplIfcAuthIndResponder, }, DeauthConf { payload: WlanFullmacImplIfcDeauthConfRequest, responder: WlanFullmacImplIfcDeauthConfResponder, }, DeauthInd { ind: WlanFullmacDeauthIndication, responder: WlanFullmacImplIfcDeauthIndResponder, }, AssocInd { resp: WlanFullmacAssocInd, responder: WlanFullmacImplIfcAssocIndResponder, }, DisassocConf { resp: WlanFullmacDisassocConfirm, responder: WlanFullmacImplIfcDisassocConfResponder, }, DisassocInd { ind: WlanFullmacDisassocIndication, responder: WlanFullmacImplIfcDisassocIndResponder, }, StartConf { resp: WlanFullmacStartConfirm, responder: WlanFullmacImplIfcStartConfResponder, }, StopConf { resp: WlanFullmacStopConfirm, responder: WlanFullmacImplIfcStopConfResponder, }, EapolConf { resp: WlanFullmacEapolConfirm, responder: WlanFullmacImplIfcEapolConfResponder, }, OnChannelSwitch { ind: WlanFullmacChannelSwitchInfo, responder: WlanFullmacImplIfcOnChannelSwitchResponder, }, SignalReport { ind: WlanFullmacSignalReportIndication, responder: WlanFullmacImplIfcSignalReportResponder, }, EapolInd { ind: WlanFullmacEapolIndication, responder: WlanFullmacImplIfcEapolIndResponder, }, OnPmkAvailable { info: WlanFullmacPmkInfo, responder: WlanFullmacImplIfcOnPmkAvailableResponder, }, SaeHandshakeInd { ind: WlanFullmacSaeHandshakeInd, responder: WlanFullmacImplIfcSaeHandshakeIndResponder, }, SaeFrameRx { frame: WlanFullmacSaeFrame, responder: WlanFullmacImplIfcSaeFrameRxResponder, }, OnWmmStatusResp { status: i32, wmm_params: WlanWmmParameters, responder: WlanFullmacImplIfcOnWmmStatusRespResponder, },
}
Expand description

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

Variants§

§

OnScanResult

§

OnScanEnd

§

ConnectConf

§

RoamConf

Report the result of an MLME-initiated roam attempt.

§

RoamStartInd

Report that a fullmac-initiated roam attempt is in progress. Fullmac must send this start indication for all roam attempts.

§

RoamResultInd

Report the result of a fullmac-initiated roam attempt.

§

AuthInd

§

DeauthConf

§

DeauthInd

§

AssocInd

§

DisassocConf

§

DisassocInd

§

StartConf

§

StopConf

§

EapolConf

§

OnChannelSwitch

§

SignalReport

§

EapolInd

§

OnPmkAvailable

§

SaeHandshakeInd

§

SaeFrameRx

§

OnWmmStatusResp

Implementations§

source§

impl WlanFullmacImplIfcRequest

source

pub fn into_on_scan_result( self, ) -> Option<(WlanFullmacImplIfcOnScanResultRequest, WlanFullmacImplIfcOnScanResultResponder)>

source

pub fn into_on_scan_end( self, ) -> Option<(WlanFullmacImplIfcOnScanEndRequest, WlanFullmacImplIfcOnScanEndResponder)>

source

pub fn into_connect_conf( self, ) -> Option<(WlanFullmacImplIfcConnectConfRequest, WlanFullmacImplIfcConnectConfResponder)>

source

pub fn into_roam_conf( self, ) -> Option<(WlanFullmacImplIfcRoamConfRequest, WlanFullmacImplIfcRoamConfResponder)>

source

pub fn into_roam_start_ind( self, ) -> Option<(WlanFullmacImplIfcRoamStartIndRequest, WlanFullmacImplIfcRoamStartIndResponder)>

source

pub fn into_roam_result_ind( self, ) -> Option<(WlanFullmacImplIfcRoamResultIndRequest, WlanFullmacImplIfcRoamResultIndResponder)>

source

pub fn into_auth_ind( self, ) -> Option<(WlanFullmacAuthInd, WlanFullmacImplIfcAuthIndResponder)>

source

pub fn into_deauth_conf( self, ) -> Option<(WlanFullmacImplIfcDeauthConfRequest, WlanFullmacImplIfcDeauthConfResponder)>

source

pub fn into_deauth_ind( self, ) -> Option<(WlanFullmacDeauthIndication, WlanFullmacImplIfcDeauthIndResponder)>

source

pub fn into_assoc_ind( self, ) -> Option<(WlanFullmacAssocInd, WlanFullmacImplIfcAssocIndResponder)>

source

pub fn into_disassoc_conf( self, ) -> Option<(WlanFullmacDisassocConfirm, WlanFullmacImplIfcDisassocConfResponder)>

source

pub fn into_disassoc_ind( self, ) -> Option<(WlanFullmacDisassocIndication, WlanFullmacImplIfcDisassocIndResponder)>

source

pub fn into_start_conf( self, ) -> Option<(WlanFullmacStartConfirm, WlanFullmacImplIfcStartConfResponder)>

source

pub fn into_stop_conf( self, ) -> Option<(WlanFullmacStopConfirm, WlanFullmacImplIfcStopConfResponder)>

source

pub fn into_eapol_conf( self, ) -> Option<(WlanFullmacEapolConfirm, WlanFullmacImplIfcEapolConfResponder)>

source

pub fn into_on_channel_switch( self, ) -> Option<(WlanFullmacChannelSwitchInfo, WlanFullmacImplIfcOnChannelSwitchResponder)>

source

pub fn into_signal_report( self, ) -> Option<(WlanFullmacSignalReportIndication, WlanFullmacImplIfcSignalReportResponder)>

source

pub fn into_eapol_ind( self, ) -> Option<(WlanFullmacEapolIndication, WlanFullmacImplIfcEapolIndResponder)>

source

pub fn into_on_pmk_available( self, ) -> Option<(WlanFullmacPmkInfo, WlanFullmacImplIfcOnPmkAvailableResponder)>

source

pub fn into_sae_handshake_ind( self, ) -> Option<(WlanFullmacSaeHandshakeInd, WlanFullmacImplIfcSaeHandshakeIndResponder)>

source

pub fn into_sae_frame_rx( self, ) -> Option<(WlanFullmacSaeFrame, WlanFullmacImplIfcSaeFrameRxResponder)>

source

pub fn into_on_wmm_status_resp( self, ) -> Option<(i32, WlanWmmParameters, WlanFullmacImplIfcOnWmmStatusRespResponder)>

source

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

Name of the method defined in FIDL

Trait Implementations§

source§

impl Debug for WlanFullmacImplIfcRequest

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