pub struct NetworkResult {
pub network_id: usize,
pub ssid: String,
pub flags: String,
}
Expand description
A known WiFi network.
Fields§
§network_id: usize
§ssid: String
§flags: String
Implementations§
Source§impl NetworkResult
impl NetworkResult
pub async fn vec_from_str( response: &str, socket: &mut UnixDatagram, ) -> Result<Vec<NetworkResult>>
Trait Implementations§
Source§impl Clone for NetworkResult
impl Clone for NetworkResult
Source§fn clone(&self) -> NetworkResult
fn clone(&self) -> NetworkResult
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 NetworkResult
impl Debug for NetworkResult
Auto Trait Implementations§
impl Freeze for NetworkResult
impl RefUnwindSafe for NetworkResult
impl Send for NetworkResult
impl Sync for NetworkResult
impl Unpin for NetworkResult
impl UnwindSafe for NetworkResult
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