fidl_fuchsia_wlan_fullmac

Enum WlanFullmacImplIfcRequest

Source
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 { payload: WlanFullmacImplIfcAuthIndRequest, responder: WlanFullmacImplIfcAuthIndResponder, }, DeauthConf { payload: WlanFullmacImplIfcDeauthConfRequest, responder: WlanFullmacImplIfcDeauthConfResponder, }, DeauthInd { payload: WlanFullmacImplIfcDeauthIndRequest, responder: WlanFullmacImplIfcDeauthIndResponder, }, AssocInd { payload: WlanFullmacImplIfcAssocIndRequest, responder: WlanFullmacImplIfcAssocIndResponder, }, DisassocConf { payload: WlanFullmacImplIfcDisassocConfRequest, responder: WlanFullmacImplIfcDisassocConfResponder, }, DisassocInd { payload: WlanFullmacImplIfcDisassocIndRequest, responder: WlanFullmacImplIfcDisassocIndResponder, }, StartConf { payload: WlanFullmacImplIfcStartConfRequest, responder: WlanFullmacImplIfcStartConfResponder, }, StopConf { payload: WlanFullmacImplIfcStopConfRequest, responder: WlanFullmacImplIfcStopConfResponder, }, EapolConf { payload: WlanFullmacImplIfcEapolConfRequest, responder: WlanFullmacImplIfcEapolConfResponder, }, OnChannelSwitch { ind: WlanFullmacChannelSwitchInfo, responder: WlanFullmacImplIfcOnChannelSwitchResponder, }, SignalReport { ind: WlanFullmacSignalReportIndication, responder: WlanFullmacImplIfcSignalReportResponder, }, EapolInd { ind: WlanFullmacEapolIndication, responder: WlanFullmacImplIfcEapolIndResponder, }, OnPmkAvailable { payload: WlanFullmacImplIfcOnPmkAvailableRequest, responder: WlanFullmacImplIfcOnPmkAvailableResponder, }, SaeHandshakeInd { ind: WlanFullmacSaeHandshakeInd, responder: WlanFullmacImplIfcSaeHandshakeIndResponder, }, SaeFrameRx { frame: SaeFrame, 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

Report that the driver deauthenticated.

§

AssocInd

§

DisassocConf

Report the result of a previously-issued disassociate request. IEEE 802.11-2020 6.3.9.2.

§

DisassocInd

Report that disassociation with the specified peer occurred (IEEE 802.11-2020 6.3.9.3).

§

StartConf

Report the result of a WlanFullmacImpl::StartBss request.

§

StopConf

Report the result of a WlanFullmacImpl::StopBss request.

§

EapolConf

Report the result of a EAPoL frame transmission (IEEE 802.11-2020 6.3.22.2). EAPoL frames are transmitted by the platform via WlanFullmacImpl::EapolTx.

§

OnChannelSwitch

§

SignalReport

§

EapolInd

§

OnPmkAvailable

Inform the platform that the PMK is available after a driver-handled SAE handshake.

§

SaeHandshakeInd

§

SaeFrameRx

Receive an SAE authentication frame.

§

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<(WlanFullmacImplIfcAuthIndRequest, WlanFullmacImplIfcAuthIndResponder)>

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

Source

pub fn into_eapol_conf( self, ) -> Option<(WlanFullmacImplIfcEapolConfRequest, 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<(WlanFullmacImplIfcOnPmkAvailableRequest, WlanFullmacImplIfcOnPmkAvailableResponder)>

Source

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

Source

pub fn into_sae_frame_rx( self, ) -> Option<(SaeFrame, 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>,

Source§

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>,

Source§

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