pub struct SharedNetworksInstance<'a> { /* private fields */ }Expand description
A wrapper around a Networks implementation that notifies on changes to the networks state.
Trait Implementations§
Source§fn max_networks(&self) -> Result<u8, Error>
fn max_networks(&self) -> Result<u8, Error>
Return the maximum number of networks supported by the implementation Read more
Source§fn networks(
&self,
f: &mut dyn FnMut(&[u8]) -> Result<(), Error>,
) -> Result<(), Error>
fn networks( &self, f: &mut dyn FnMut(&[u8]) -> Result<(), Error>, ) -> Result<(), Error>
Iterate over the networks recorded in the implementation and call the provided function for each network
Source§fn creds(
&self,
network_id: &[u8],
f: &mut dyn FnMut(&WirelessCreds<'_>) -> Result<(), Error>,
) -> Result<u8, NetworksError>
fn creds( &self, network_id: &[u8], f: &mut dyn FnMut(&WirelessCreds<'_>) -> Result<(), Error>, ) -> Result<u8, NetworksError>
Get the credentials for the given network ID by calling the provided function Read more
Source§fn next_creds(
&self,
last_network_id: Option<&[u8]>,
f: &mut dyn FnMut(&WirelessCreds<'_>) -> Result<(), Error>,
) -> Result<bool, Error>
fn next_creds( &self, last_network_id: Option<&[u8]>, f: &mut dyn FnMut(&WirelessCreds<'_>) -> Result<(), Error>, ) -> Result<bool, Error>
Return the next credentials after the ones corresponding to the given network ID by calling the provided function Read more
Source§fn set_enabled(&mut self, enabled: bool) -> Result<(), Error>
fn set_enabled(&mut self, enabled: bool) -> Result<(), Error>
Set the network interface enabled or disabled
Source§fn add_or_update(
&mut self,
creds: &WirelessCreds<'_>,
) -> Result<u8, NetworksError>
fn add_or_update( &mut self, creds: &WirelessCreds<'_>, ) -> Result<u8, NetworksError>
Add or update the credentials for the given network ID Read more
Source§fn reorder(&mut self, index: u8, network_id: &[u8]) -> Result<u8, NetworksError>
fn reorder(&mut self, index: u8, network_id: &[u8]) -> Result<u8, NetworksError>
Reorder the network with the given index Read more
Source§fn remove(&mut self, network_id: &[u8]) -> Result<u8, NetworksError>
fn remove(&mut self, network_id: &[u8]) -> Result<u8, NetworksError>
Remove the network with the given network ID Read more
Source§fn managed(&self) -> Result<bool, Error>
fn managed(&self) -> Result<bool, Error>
Return whether the networks store is in “managed” state. Read more
Source§fn set_managed(&mut self, managed: bool) -> Result<(), Error>
fn set_managed(&mut self, managed: bool) -> Result<(), Error>
Set the managed state of the networks store (see
managed).Source§fn reset(&mut self) -> Result<(), Error>
fn reset(&mut self) -> Result<(), Error>
Reset the networks to the initial state, removing all recorded network credentials
Auto Trait Implementations§
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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 moreSource§impl<T, I> IntoFallibleInit<T> for Iwhere
I: Init<T>,
impl<T, I> IntoFallibleInit<T> for Iwhere
I: Init<T>,
Source§fn into_fallible<E>(self) -> impl Init<T, E>
fn into_fallible<E>(self) -> impl Init<T, E>
Convert the infallible initializer to a fallible one.
Source§impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
type Error = <Target as OctetsFrom<Source>>::Error
Source§fn try_octets_into(
self,
) -> Result<Target, <Source as OctetsInto<Target>>::Error>
fn try_octets_into( self, ) -> Result<Target, <Source as OctetsInto<Target>>::Error>
Performs the conversion.
Source§fn octets_into(self) -> Target
fn octets_into(self) -> Target
Performs an infallible conversion.