pub enum MlmeRequest {
Show 26 variants
Scan(ScanRequest),
AuthResponse(AuthenticateResponse),
AssocResponse(AssociateResponse),
Connect(ConnectRequest),
Reconnect(ReconnectRequest),
Roam(RoamRequest),
Deauthenticate(DeauthenticateRequest),
Disassociate(DisassociateRequest),
Eapol(EapolRequest),
SetKeys(SetKeysRequest),
SetCtrlPort(SetControlledPortRequest),
Start(StartRequest),
Stop(StopRequest),
GetIfaceCounterStats(Responder<GetIfaceCounterStatsResponse>),
GetIfaceHistogramStats(Responder<GetIfaceHistogramStatsResponse>),
ListMinstrelPeers(Responder<MinstrelListResponse>),
GetMinstrelStats(MinstrelStatsRequest, Responder<MinstrelStatsResponse>),
SaeHandshakeResp(SaeHandshakeResponse),
SaeFrameTx(SaeFrame),
WmmStatusReq,
FinalizeAssociation(NegotiatedCapabilities),
QueryDeviceInfo(Responder<DeviceInfo>),
QueryDiscoverySupport(Responder<DiscoverySupport>),
QueryMacSublayerSupport(Responder<MacSublayerSupport>),
QuerySecuritySupport(Responder<SecuritySupport>),
QuerySpectrumManagementSupport(Responder<SpectrumManagementSupport>),
}
Variants§
Scan(ScanRequest)
AuthResponse(AuthenticateResponse)
AssocResponse(AssociateResponse)
Connect(ConnectRequest)
Reconnect(ReconnectRequest)
Roam(RoamRequest)
Deauthenticate(DeauthenticateRequest)
Disassociate(DisassociateRequest)
Eapol(EapolRequest)
SetKeys(SetKeysRequest)
SetCtrlPort(SetControlledPortRequest)
Start(StartRequest)
Stop(StopRequest)
GetIfaceCounterStats(Responder<GetIfaceCounterStatsResponse>)
GetIfaceHistogramStats(Responder<GetIfaceHistogramStatsResponse>)
ListMinstrelPeers(Responder<MinstrelListResponse>)
GetMinstrelStats(MinstrelStatsRequest, Responder<MinstrelStatsResponse>)
SaeHandshakeResp(SaeHandshakeResponse)
SaeFrameTx(SaeFrame)
WmmStatusReq
FinalizeAssociation(NegotiatedCapabilities)
QueryDeviceInfo(Responder<DeviceInfo>)
QueryDiscoverySupport(Responder<DiscoverySupport>)
QueryMacSublayerSupport(Responder<MacSublayerSupport>)
QuerySecuritySupport(Responder<SecuritySupport>)
QuerySpectrumManagementSupport(Responder<SpectrumManagementSupport>)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MlmeRequest
impl !RefUnwindSafe for MlmeRequest
impl Send for MlmeRequest
impl Sync for MlmeRequest
impl Unpin for MlmeRequest
impl !UnwindSafe for MlmeRequest
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more