pub struct FeatureSupportSynchronousProxy { /* private fields */ }
Implementations§
Source§impl FeatureSupportSynchronousProxy
impl FeatureSupportSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<FeatureSupportEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<FeatureSupportEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn query_discovery_support(
&self,
___deadline: MonotonicInstant,
) -> Result<FeatureSupportQueryDiscoverySupportResult, Error>
pub fn query_discovery_support( &self, ___deadline: MonotonicInstant, ) -> Result<FeatureSupportQueryDiscoverySupportResult, Error>
Return support for features related to discovery of potential BSSs.
- see [
fuchsia.wlan.common/DiscoverySupport
]
Sourcepub fn query_mac_sublayer_support(
&self,
___deadline: MonotonicInstant,
) -> Result<FeatureSupportQueryMacSublayerSupportResult, Error>
pub fn query_mac_sublayer_support( &self, ___deadline: MonotonicInstant, ) -> Result<FeatureSupportQueryMacSublayerSupportResult, Error>
Return support for features related to the MAC sublayer.
- see [
fuchsia.wlan.common/MacSublayerSupport
]
Sourcepub fn query_security_support(
&self,
___deadline: MonotonicInstant,
) -> Result<FeatureSupportQuerySecuritySupportResult, Error>
pub fn query_security_support( &self, ___deadline: MonotonicInstant, ) -> Result<FeatureSupportQuerySecuritySupportResult, Error>
Return support for features related to security/access control and data confidentiality.
- see [
fuchsia.wlan.common/SecuritySupport
]
Sourcepub fn query_spectrum_management_support(
&self,
___deadline: MonotonicInstant,
) -> Result<FeatureSupportQuerySpectrumManagementSupportResult, Error>
pub fn query_spectrum_management_support( &self, ___deadline: MonotonicInstant, ) -> Result<FeatureSupportQuerySpectrumManagementSupportResult, Error>
Return support for features related to spectrum management.
- see [
fuchsia.wlan.common/SpectrumManagementSupport
]
Trait Implementations§
Source§impl SynchronousProxy for FeatureSupportSynchronousProxy
impl SynchronousProxy for FeatureSupportSynchronousProxy
Source§type Proxy = FeatureSupportProxy
type Proxy = FeatureSupportProxy
The async proxy for the same protocol.
Source§type Protocol = FeatureSupportMarker
type Protocol = FeatureSupportMarker
The protocol which this
Proxy
controls.Source§fn from_channel(inner: Channel) -> Self
fn from_channel(inner: Channel) -> Self
Create a proxy over the given channel.
Source§fn into_channel(self) -> Channel
fn into_channel(self) -> Channel
Convert the proxy back into a channel.
Source§fn as_channel(&self) -> &Channel
fn as_channel(&self) -> &Channel
Get a reference to the proxy’s underlying channel. Read more
Auto Trait Implementations§
impl Freeze for FeatureSupportSynchronousProxy
impl RefUnwindSafe for FeatureSupportSynchronousProxy
impl Send for FeatureSupportSynchronousProxy
impl Sync for FeatureSupportSynchronousProxy
impl Unpin for FeatureSupportSynchronousProxy
impl UnwindSafe for FeatureSupportSynchronousProxy
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