pub enum MlmeRequest {
Show 29 variants StartScan { req: ScanRequest, control_handle: MlmeControlHandle, }, ConnectReq { req: ConnectRequest, control_handle: MlmeControlHandle, }, ReconnectReq { req: ReconnectRequest, control_handle: MlmeControlHandle, }, AuthenticateResp { resp: AuthenticateResponse, control_handle: MlmeControlHandle, }, DeauthenticateReq { req: DeauthenticateRequest, control_handle: MlmeControlHandle, }, AssociateResp { resp: AssociateResponse, control_handle: MlmeControlHandle, }, DisassociateReq { req: DisassociateRequest, control_handle: MlmeControlHandle, }, ResetReq { req: ResetRequest, control_handle: MlmeControlHandle, }, StartReq { req: StartRequest, control_handle: MlmeControlHandle, }, StopReq { req: StopRequest, control_handle: MlmeControlHandle, }, SetKeysReq { req: SetKeysRequest, control_handle: MlmeControlHandle, }, DeleteKeysReq { req: DeleteKeysRequest, control_handle: MlmeControlHandle, }, EapolReq { req: EapolRequest, control_handle: MlmeControlHandle, }, SetControlledPort { req: SetControlledPortRequest, control_handle: MlmeControlHandle, }, QueryDeviceInfo { responder: MlmeQueryDeviceInfoResponder, }, QueryDiscoverySupport { responder: MlmeQueryDiscoverySupportResponder, }, QueryMacSublayerSupport { responder: MlmeQueryMacSublayerSupportResponder, }, QuerySecuritySupport { responder: MlmeQuerySecuritySupportResponder, }, QuerySpectrumManagementSupport { responder: MlmeQuerySpectrumManagementSupportResponder, }, GetIfaceCounterStats { responder: MlmeGetIfaceCounterStatsResponder, }, GetIfaceHistogramStats { responder: MlmeGetIfaceHistogramStatsResponder, }, ListMinstrelPeers { responder: MlmeListMinstrelPeersResponder, }, GetMinstrelStats { req: MinstrelStatsRequest, responder: MlmeGetMinstrelStatsResponder, }, StartCaptureFrames { req: StartCaptureFramesRequest, responder: MlmeStartCaptureFramesResponder, }, StopCaptureFrames { control_handle: MlmeControlHandle, }, SaeHandshakeResp { resp: SaeHandshakeResponse, control_handle: MlmeControlHandle, }, SaeFrameTx { frame: SaeFrame, control_handle: MlmeControlHandle, }, WmmStatusReq { control_handle: MlmeControlHandle, }, FinalizeAssociationReq { negotiated_capabilities: NegotiatedCapabilities, control_handle: MlmeControlHandle, },
}

Variants§

§

StartScan

Fields

§control_handle: MlmeControlHandle
§

ConnectReq

Fields

§control_handle: MlmeControlHandle
§

ReconnectReq

Fields

§control_handle: MlmeControlHandle
§

AuthenticateResp

Fields

§control_handle: MlmeControlHandle
§

DeauthenticateReq

§

AssociateResp

Fields

§control_handle: MlmeControlHandle
§

DisassociateReq

Fields

§control_handle: MlmeControlHandle
§

ResetReq

Fields

§control_handle: MlmeControlHandle
§

StartReq

Fields

§control_handle: MlmeControlHandle
§

StopReq

Fields

§control_handle: MlmeControlHandle
§

SetKeysReq

Fields

§control_handle: MlmeControlHandle
§

DeleteKeysReq

Fields

§control_handle: MlmeControlHandle
§

EapolReq

Fields

§control_handle: MlmeControlHandle
§

SetControlledPort

§

QueryDeviceInfo

§

QueryDiscoverySupport

§

QueryMacSublayerSupport

§

QuerySecuritySupport

§

QuerySpectrumManagementSupport

§

GetIfaceCounterStats

§

GetIfaceHistogramStats

§

ListMinstrelPeers

§

GetMinstrelStats

§

StartCaptureFrames

§

StopCaptureFrames

Fields

§control_handle: MlmeControlHandle
§

SaeHandshakeResp

Notifies that SAE authentication is completed.

Fields

§control_handle: MlmeControlHandle
§

SaeFrameTx

Transmits SAE frame (if SME is managing SAE authentication).

Fields

§frame: SaeFrame
§control_handle: MlmeControlHandle
§

WmmStatusReq

Fields

§control_handle: MlmeControlHandle
§

FinalizeAssociationReq

Fields

§negotiated_capabilities: NegotiatedCapabilities
§control_handle: MlmeControlHandle

Implementations§

source§

impl MlmeRequest

source

pub fn into_start_scan(self) -> Option<(ScanRequest, MlmeControlHandle)>

source

pub fn into_connect_req(self) -> Option<(ConnectRequest, MlmeControlHandle)>

source

pub fn into_reconnect_req(self) -> Option<(ReconnectRequest, MlmeControlHandle)>

source

pub fn into_authenticate_resp( self ) -> Option<(AuthenticateResponse, MlmeControlHandle)>

source

pub fn into_deauthenticate_req( self ) -> Option<(DeauthenticateRequest, MlmeControlHandle)>

source

pub fn into_associate_resp( self ) -> Option<(AssociateResponse, MlmeControlHandle)>

source

pub fn into_disassociate_req( self ) -> Option<(DisassociateRequest, MlmeControlHandle)>

source

pub fn into_reset_req(self) -> Option<(ResetRequest, MlmeControlHandle)>

source

pub fn into_start_req(self) -> Option<(StartRequest, MlmeControlHandle)>

source

pub fn into_stop_req(self) -> Option<(StopRequest, MlmeControlHandle)>

source

pub fn into_set_keys_req(self) -> Option<(SetKeysRequest, MlmeControlHandle)>

source

pub fn into_delete_keys_req( self ) -> Option<(DeleteKeysRequest, MlmeControlHandle)>

source

pub fn into_eapol_req(self) -> Option<(EapolRequest, MlmeControlHandle)>

source

pub fn into_set_controlled_port( self ) -> Option<(SetControlledPortRequest, MlmeControlHandle)>

source

pub fn into_query_device_info(self) -> Option<MlmeQueryDeviceInfoResponder>

source

pub fn into_query_discovery_support( self ) -> Option<MlmeQueryDiscoverySupportResponder>

source

pub fn into_query_mac_sublayer_support( self ) -> Option<MlmeQueryMacSublayerSupportResponder>

source

pub fn into_query_security_support( self ) -> Option<MlmeQuerySecuritySupportResponder>

source

pub fn into_query_spectrum_management_support( self ) -> Option<MlmeQuerySpectrumManagementSupportResponder>

source

pub fn into_get_iface_counter_stats( self ) -> Option<MlmeGetIfaceCounterStatsResponder>

source

pub fn into_get_iface_histogram_stats( self ) -> Option<MlmeGetIfaceHistogramStatsResponder>

source

pub fn into_list_minstrel_peers(self) -> Option<MlmeListMinstrelPeersResponder>

source

pub fn into_get_minstrel_stats( self ) -> Option<(MinstrelStatsRequest, MlmeGetMinstrelStatsResponder)>

source

pub fn into_start_capture_frames( self ) -> Option<(StartCaptureFramesRequest, MlmeStartCaptureFramesResponder)>

source

pub fn into_stop_capture_frames(self) -> Option<MlmeControlHandle>

source

pub fn into_sae_handshake_resp( self ) -> Option<(SaeHandshakeResponse, MlmeControlHandle)>

source

pub fn into_sae_frame_tx(self) -> Option<(SaeFrame, MlmeControlHandle)>

source

pub fn into_wmm_status_req(self) -> Option<MlmeControlHandle>

source

pub fn into_finalize_association_req( self ) -> Option<(NegotiatedCapabilities, MlmeControlHandle)>

source

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

Name of the method defined in FIDL

Trait Implementations§

source§

impl Debug for MlmeRequest

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> Encode<Ambiguous1> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _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> Encode<Ambiguous2> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _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