Struct ReSet_Lib::network::network::AccessPoint
source · pub struct AccessPoint {
pub ssid: Vec<u8>,
pub strength: u8,
pub associated_connection: Path<'static>,
pub dbus_path: Path<'static>,
pub connected: bool,
pub stored: bool,
}Fields§
§ssid: Vec<u8>§strength: u8§associated_connection: Path<'static>§dbus_path: Path<'static>§connected: bool§stored: boolTrait Implementations§
source§impl Append for AccessPoint
impl Append for AccessPoint
source§fn append_by_ref(&self, iter: &mut IterAppend<'_>)
fn append_by_ref(&self, iter: &mut IterAppend<'_>)
Performs the append operation by borrowing self.
source§fn append(self, ia: &mut IterAppend<'_>)where
Self: Sized,
fn append(self, ia: &mut IterAppend<'_>)where Self: Sized,
Performs the append operation by consuming self.
source§impl Arg for AccessPoint
impl Arg for AccessPoint
source§impl Clone for AccessPoint
impl Clone for AccessPoint
source§fn clone(&self) -> AccessPoint
fn clone(&self) -> AccessPoint
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AccessPoint
impl Debug for AccessPoint
source§impl Default for AccessPoint
impl Default for AccessPoint
source§fn default() -> AccessPoint
fn default() -> AccessPoint
Returns the “default value” for a type. Read more
source§impl<'a> Get<'a> for AccessPoint
impl<'a> Get<'a> for AccessPoint
source§impl RefArg for AccessPoint
impl RefArg for AccessPoint
source§fn signature(&self) -> Signature<'static>
fn signature(&self) -> Signature<'static>
The corresponding D-Bus type signature for this type.
source§fn append(&self, i: &mut IterAppend<'_>)
fn append(&self, i: &mut IterAppend<'_>)
Performs the append operation.
source§fn as_any(&self) -> &dyn Anywhere
Self: 'static,
fn as_any(&self) -> &dyn Anywhere Self: 'static,
Transforms this argument to Any (which can be downcasted to read the current value). Read more
source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: 'static,
fn as_any_mut(&mut self) -> &mut dyn Anywhere Self: 'static,
Transforms this argument to Any (which can be downcasted to read the current value). Read more
source§fn box_clone(&self) -> Box<dyn RefArg + 'static>
fn box_clone(&self) -> Box<dyn RefArg + 'static>
Deep clone of the RefArg, causing the result to be ’static. Read more
source§fn as_iter<'a>(
&'a self
) -> Option<Box<dyn Iterator<Item = &'a dyn RefArg> + 'a>>
fn as_iter<'a>( &'a self ) -> Option<Box<dyn Iterator<Item = &'a dyn RefArg> + 'a>>
Try to read the argument as an iterator. Read more
impl Send for AccessPoint
impl Sync for AccessPoint
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