Struct rusty_network_manager::AccessPointProxy

source ·
pub struct AccessPointProxy<'p>(/* private fields */);

Implementations§

source§

impl AccessPointProxy<'_>

source

pub async fn new_from_path( device_path: OwnedObjectPath, connection: &Connection ) -> Result<AccessPointProxy<'_>>

source§

impl<'p> AccessPointProxy<'p>

source

pub async fn new(conn: &Connection) -> Result<AccessPointProxy<'p>>

Creates a new proxy with the default service and path.

source

pub fn builder(conn: &Connection) -> Builder<'p, Self>

Returns a customizable builder for this proxy.

source

pub fn into_inner(self) -> Proxy<'p>

Consumes self, returning the underlying zbus::Proxy.

source

pub fn inner(&self) -> &Proxy<'p>

The reference to the underlying zbus::Proxy.

source

pub fn inner_mut(&mut self) -> &mut Proxy<'p>

The mutable reference to the underlying zbus::Proxy.

source

pub async fn bandwidth(&self) -> Result<u32>

Bandwidth property

source

pub fn cached_bandwidth( &self ) -> Result<Option<<Result<u32> as ResultAdapter>::Ok>, <Result<u32> as ResultAdapter>::Err>

Get the cached value of the Bandwidth property, or None if the property is not cached.

source

pub async fn receive_bandwidth_changed( &self ) -> PropertyStream<'p, <Result<u32> as ResultAdapter>::Ok>

Create a stream for the Bandwidth property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn flags(&self) -> Result<u32>

Flags property

source

pub fn cached_flags( &self ) -> Result<Option<<Result<u32> as ResultAdapter>::Ok>, <Result<u32> as ResultAdapter>::Err>

Get the cached value of the Flags property, or None if the property is not cached.

source

pub async fn receive_flags_changed( &self ) -> PropertyStream<'p, <Result<u32> as ResultAdapter>::Ok>

Create a stream for the Flags property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn frequency(&self) -> Result<u32>

Frequency property

source

pub fn cached_frequency( &self ) -> Result<Option<<Result<u32> as ResultAdapter>::Ok>, <Result<u32> as ResultAdapter>::Err>

Get the cached value of the Frequency property, or None if the property is not cached.

source

pub async fn receive_frequency_changed( &self ) -> PropertyStream<'p, <Result<u32> as ResultAdapter>::Ok>

Create a stream for the Frequency property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn hw_address(&self) -> Result<String>

HwAddress property

source

pub fn cached_hw_address( &self ) -> Result<Option<<Result<String> as ResultAdapter>::Ok>, <Result<String> as ResultAdapter>::Err>

Get the cached value of the HwAddress property, or None if the property is not cached.

source

pub async fn receive_hw_address_changed( &self ) -> PropertyStream<'p, <Result<String> as ResultAdapter>::Ok>

Create a stream for the HwAddress property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn last_seen(&self) -> Result<i32>

LastSeen property

source

pub fn cached_last_seen( &self ) -> Result<Option<<Result<i32> as ResultAdapter>::Ok>, <Result<i32> as ResultAdapter>::Err>

Get the cached value of the LastSeen property, or None if the property is not cached.

source

pub async fn receive_last_seen_changed( &self ) -> PropertyStream<'p, <Result<i32> as ResultAdapter>::Ok>

Create a stream for the LastSeen property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn max_bitrate(&self) -> Result<u32>

MaxBitrate property

source

pub fn cached_max_bitrate( &self ) -> Result<Option<<Result<u32> as ResultAdapter>::Ok>, <Result<u32> as ResultAdapter>::Err>

Get the cached value of the MaxBitrate property, or None if the property is not cached.

source

pub async fn receive_max_bitrate_changed( &self ) -> PropertyStream<'p, <Result<u32> as ResultAdapter>::Ok>

Create a stream for the MaxBitrate property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn mode(&self) -> Result<u32>

Mode property

source

pub fn cached_mode( &self ) -> Result<Option<<Result<u32> as ResultAdapter>::Ok>, <Result<u32> as ResultAdapter>::Err>

Get the cached value of the Mode property, or None if the property is not cached.

source

pub async fn receive_mode_changed( &self ) -> PropertyStream<'p, <Result<u32> as ResultAdapter>::Ok>

Create a stream for the Mode property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn rsn_flags(&self) -> Result<u32>

RsnFlags property

source

pub fn cached_rsn_flags( &self ) -> Result<Option<<Result<u32> as ResultAdapter>::Ok>, <Result<u32> as ResultAdapter>::Err>

Get the cached value of the RsnFlags property, or None if the property is not cached.

source

pub async fn receive_rsn_flags_changed( &self ) -> PropertyStream<'p, <Result<u32> as ResultAdapter>::Ok>

Create a stream for the RsnFlags property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn ssid(&self) -> Result<Vec<u8>>

Ssid property

source

pub fn cached_ssid( &self ) -> Result<Option<<Result<Vec<u8>> as ResultAdapter>::Ok>, <Result<Vec<u8>> as ResultAdapter>::Err>

Get the cached value of the Ssid property, or None if the property is not cached.

source

pub async fn receive_ssid_changed( &self ) -> PropertyStream<'p, <Result<Vec<u8>> as ResultAdapter>::Ok>

Create a stream for the Ssid property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn strength(&self) -> Result<u8>

Strength property

source

pub fn cached_strength( &self ) -> Result<Option<<Result<u8> as ResultAdapter>::Ok>, <Result<u8> as ResultAdapter>::Err>

Get the cached value of the Strength property, or None if the property is not cached.

source

pub async fn receive_strength_changed( &self ) -> PropertyStream<'p, <Result<u8> as ResultAdapter>::Ok>

Create a stream for the Strength property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

source

pub async fn wpa_flags(&self) -> Result<u32>

WpaFlags property

source

pub fn cached_wpa_flags( &self ) -> Result<Option<<Result<u32> as ResultAdapter>::Ok>, <Result<u32> as ResultAdapter>::Err>

Get the cached value of the WpaFlags property, or None if the property is not cached.

source

pub async fn receive_wpa_flags_changed( &self ) -> PropertyStream<'p, <Result<u32> as ResultAdapter>::Ok>

Create a stream for the WpaFlags property changes. This is a convenient wrapper around zbus::Proxy::receive_property_changed.

Trait Implementations§

source§

impl<'p> AsMut<Proxy<'p>> for AccessPointProxy<'p>

source§

fn as_mut(&mut self) -> &mut Proxy<'p>

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<'p> AsRef<Proxy<'p>> for AccessPointProxy<'p>

source§

fn as_ref(&self) -> &Proxy<'p>

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<'p> Clone for AccessPointProxy<'p>

source§

fn clone(&self) -> AccessPointProxy<'p>

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<'p> Debug for AccessPointProxy<'p>

source§

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

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

impl<'p> From<Proxy<'p>> for AccessPointProxy<'p>

source§

fn from(proxy: Proxy<'p>) -> Self

Converts to this type from the input type.
source§

impl<'a> ProxyDefault for AccessPointProxy<'a>

source§

const INTERFACE: Option<&'static str> = _

source§

const DESTINATION: Option<&'static str> = _

source§

const PATH: Option<&'static str> = _

source§

impl<'p> ProxyImpl<'p> for AccessPointProxy<'p>

source§

fn builder(conn: &Connection) -> Builder<'p, Self>

Returns a customizable builder for this proxy.
source§

fn into_inner(self) -> Proxy<'p>

Consumes self, returning the underlying zbus::Proxy.
source§

fn inner(&self) -> &Proxy<'p>

The reference to the underlying zbus::Proxy.
source§

impl<'p> Serialize for AccessPointProxy<'p>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<'p> Type for AccessPointProxy<'p>

source§

fn signature() -> Signature<'static>

Get the signature for the implementing type. Read more

Auto Trait Implementations§

§

impl<'p> Freeze for AccessPointProxy<'p>

§

impl<'p> !RefUnwindSafe for AccessPointProxy<'p>

§

impl<'p> Send for AccessPointProxy<'p>

§

impl<'p> Sync for AccessPointProxy<'p>

§

impl<'p> Unpin for AccessPointProxy<'p>

§

impl<'p> !UnwindSafe for AccessPointProxy<'p>

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> DynamicType for T
where T: Type + ?Sized,

source§

fn dynamic_signature(&self) -> Signature<'_>

Get the signature for the implementing type. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

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.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

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

§

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

§

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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

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

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more