fidl_fuchsia_wlan_fullmac

Struct WlanFullmacImpl_Proxy

Source
pub struct WlanFullmacImpl_Proxy { /* private fields */ }

Implementations§

Source§

impl WlanFullmacImpl_Proxy

Source

pub fn new(channel: AsyncChannel) -> Self

Create a new Proxy for fuchsia.wlan.fullmac/WlanFullmacImpl.

Source

pub fn take_event_stream(&self) -> WlanFullmacImpl_EventStream

Get a Stream of events from the remote end of the protocol.

§Panics

Panics if the event stream was already taken.

Source

pub fn init( &self, payload: WlanFullmacImplInitRequest, ) -> QueryResponseFut<WlanFullmacImplInitResult, DefaultFuchsiaResourceDialect>

Initialize the FullMAC driver. This is the first request that the platform will make to the FullMAC driver.

On initialization, MLME provides the client end to the WlanFullmacImplIfc protocol. The driver must return the SME server end channel, which is used internally by the platform. Typically, the SME server end channel is given to the FullMAC driver by fuchsia.wlan.phyimpl/WlanPhyImpl.CreateIface.

If Init completes successfully, the platform will begin making other WlanFullmacImpl requests to the FullMAC driver, and the FullMAC driver is free to make WlanFullmacImplIfc requests to the platform. The platform may continue making WlanFullmacImpl requests until the WlanFullmacImpl server unbinds.

Common errors include:

  • ZX_ERR_ALREADY_BOUND: Init was already called on this FullMAC driver.
Source

pub fn query( &self, ) -> QueryResponseFut<WlanFullmacImplQueryResult, DefaultFuchsiaResourceDialect>

Returns high-level information describing the state of the FullMAC driver. This is safe to call even before the call to WlanFullmacImpl::Start.

Source

pub fn query_mac_sublayer_support( &self, ) -> QueryResponseFut<WlanFullmacImplQueryMacSublayerSupportResult, DefaultFuchsiaResourceDialect>

Source

pub fn query_security_support( &self, ) -> QueryResponseFut<WlanFullmacImplQuerySecuritySupportResult, DefaultFuchsiaResourceDialect>

Source

pub fn query_spectrum_management_support( &self, ) -> QueryResponseFut<WlanFullmacImplQuerySpectrumManagementSupportResult, DefaultFuchsiaResourceDialect>

Source

pub fn start_scan( &self, payload: &WlanFullmacImplStartScanRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn connect( &self, payload: &WlanFullmacImplConnectRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn reconnect( &self, payload: &WlanFullmacImplReconnectRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn roam( &self, payload: &WlanFullmacImplRoamRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

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

Source

pub fn auth_resp( &self, payload: &WlanFullmacImplAuthRespRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn deauth( &self, payload: &WlanFullmacImplDeauthRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn assoc_resp( &self, payload: &WlanFullmacImplAssocRespRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn disassoc( &self, payload: &WlanFullmacImplDisassocRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn start_bss( &self, payload: &WlanFullmacImplStartBssRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn stop_bss( &self, payload: &WlanFullmacImplStopBssRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn set_keys( &self, payload: &WlanFullmacImplSetKeysRequest, ) -> QueryResponseFut<WlanFullmacSetKeysResp, DefaultFuchsiaResourceDialect>

Sets security keys for a connection. This is typically called after a successful key exchange.

Note that the platform assumes that the driver will automatically delete keys on a disconnect or key rotation.

Source

pub fn eapol_tx( &self, payload: &WlanFullmacImplEapolTxRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Source

pub fn get_iface_counter_stats( &self, ) -> QueryResponseFut<WlanFullmacImplGetIfaceCounterStatsResult, DefaultFuchsiaResourceDialect>

Source

pub fn get_iface_histogram_stats( &self, ) -> QueryResponseFut<WlanFullmacImplGetIfaceHistogramStatsResult, DefaultFuchsiaResourceDialect>

Source

pub fn sae_handshake_resp( &self, payload: &WlanFullmacImplSaeHandshakeRespRequest, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Informs the driver of the result of an SAE handshake.

Source

pub fn sae_frame_tx( &self, frame: &SaeFrame, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Transmit an SAE authentication frame.

Source

pub fn wmm_status_req( &self, ) -> QueryResponseFut<(), DefaultFuchsiaResourceDialect>

Trait Implementations§

Source§

impl Clone for WlanFullmacImpl_Proxy

Source§

fn clone(&self) -> WlanFullmacImpl_Proxy

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WlanFullmacImpl_Proxy

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Proxy for WlanFullmacImpl_Proxy

Source§

type Protocol = WlanFullmacImpl_Marker

The protocol which this Proxy controls.
Source§

fn from_channel(inner: AsyncChannel) -> Self

Create a proxy over the given channel.
Source§

fn into_channel(self) -> Result<AsyncChannel, Self>

Attempt to convert the proxy back into a channel. Read more
Source§

fn as_channel(&self) -> &AsyncChannel

Get a reference to the proxy’s underlying channel. Read more
§

fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>

Attempt to convert the proxy back into a client end. Read more
§

fn is_closed(&self) -> bool

Returns true if the proxy has received the PEER_CLOSED signal.
§

fn on_closed(&self) -> OnSignals<'_, Unowned<'_, Handle>>

Returns a future that completes when the proxy receives the PEER_CLOSED signal.
Source§

impl WlanFullmacImpl_ProxyInterface for WlanFullmacImpl_Proxy

Source§

type InitResponseFut = QueryResponseFut<Result<WlanFullmacImplInitResponse, i32>>

Source§

type QueryResponseFut = QueryResponseFut<Result<WlanFullmacImplQueryResponse, i32>>

Source§

type QueryMacSublayerSupportResponseFut = QueryResponseFut<Result<MacSublayerSupport, i32>>

Source§

type QuerySecuritySupportResponseFut = QueryResponseFut<Result<SecuritySupport, i32>>

Source§

type QuerySpectrumManagementSupportResponseFut = QueryResponseFut<Result<SpectrumManagementSupport, i32>>

Source§

type StartScanResponseFut = QueryResponseFut<()>

Source§

type ConnectResponseFut = QueryResponseFut<()>

Source§

type ReconnectResponseFut = QueryResponseFut<()>

Source§

type RoamResponseFut = QueryResponseFut<()>

Source§

type AuthRespResponseFut = QueryResponseFut<()>

Source§

type DeauthResponseFut = QueryResponseFut<()>

Source§

type AssocRespResponseFut = QueryResponseFut<()>

Source§

type DisassocResponseFut = QueryResponseFut<()>

Source§

type StartBssResponseFut = QueryResponseFut<()>

Source§

type StopBssResponseFut = QueryResponseFut<()>

Source§

type SetKeysResponseFut = QueryResponseFut<WlanFullmacSetKeysResp>

Source§

type EapolTxResponseFut = QueryResponseFut<()>

Source§

type GetIfaceCounterStatsResponseFut = QueryResponseFut<Result<WlanFullmacIfaceCounterStats, i32>>

Source§

type GetIfaceHistogramStatsResponseFut = QueryResponseFut<Result<WlanFullmacIfaceHistogramStats, i32>>

Source§

type SaeHandshakeRespResponseFut = QueryResponseFut<()>

Source§

type SaeFrameTxResponseFut = QueryResponseFut<()>

Source§

type WmmStatusReqResponseFut = QueryResponseFut<()>

Source§

type OnLinkStateChangedResponseFut = QueryResponseFut<()>

Source§

fn init(&self, payload: WlanFullmacImplInitRequest) -> Self::InitResponseFut

Source§

fn query(&self) -> Self::QueryResponseFut

Source§

fn query_mac_sublayer_support(&self) -> Self::QueryMacSublayerSupportResponseFut

Source§

fn query_security_support(&self) -> Self::QuerySecuritySupportResponseFut

Source§

fn query_spectrum_management_support( &self, ) -> Self::QuerySpectrumManagementSupportResponseFut

Source§

fn start_scan( &self, payload: &WlanFullmacImplStartScanRequest, ) -> Self::StartScanResponseFut

Source§

fn connect( &self, payload: &WlanFullmacImplConnectRequest, ) -> Self::ConnectResponseFut

Source§

fn reconnect( &self, payload: &WlanFullmacImplReconnectRequest, ) -> Self::ReconnectResponseFut

Source§

fn roam(&self, payload: &WlanFullmacImplRoamRequest) -> Self::RoamResponseFut

Source§

fn auth_resp( &self, payload: &WlanFullmacImplAuthRespRequest, ) -> Self::AuthRespResponseFut

Source§

fn deauth( &self, payload: &WlanFullmacImplDeauthRequest, ) -> Self::DeauthResponseFut

Source§

fn assoc_resp( &self, payload: &WlanFullmacImplAssocRespRequest, ) -> Self::AssocRespResponseFut

Source§

fn disassoc( &self, payload: &WlanFullmacImplDisassocRequest, ) -> Self::DisassocResponseFut

Source§

fn start_bss( &self, payload: &WlanFullmacImplStartBssRequest, ) -> Self::StartBssResponseFut

Source§

fn stop_bss( &self, payload: &WlanFullmacImplStopBssRequest, ) -> Self::StopBssResponseFut

Source§

fn set_keys( &self, payload: &WlanFullmacImplSetKeysRequest, ) -> Self::SetKeysResponseFut

Source§

fn eapol_tx( &self, payload: &WlanFullmacImplEapolTxRequest, ) -> Self::EapolTxResponseFut

Source§

fn get_iface_counter_stats(&self) -> Self::GetIfaceCounterStatsResponseFut

Source§

fn get_iface_histogram_stats(&self) -> Self::GetIfaceHistogramStatsResponseFut

Source§

fn sae_handshake_resp( &self, payload: &WlanFullmacImplSaeHandshakeRespRequest, ) -> Self::SaeHandshakeRespResponseFut

Source§

fn sae_frame_tx(&self, frame: &SaeFrame) -> Self::SaeFrameTxResponseFut

Source§

fn wmm_status_req(&self) -> Self::WmmStatusReqResponseFut

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
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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
§

impl<T> ProxyHasClient for T
where T: Proxy,

§

fn client(&self) -> Result<ZirconClient, Infallible>

Get a “client” for this proxy. This is just an object which has methods for a few common handle creation operations.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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