pub struct WifiConnectRequest {
pub ssid: String,
pub password: Option<String>,
pub callback_id: u64,
}Fields§
§ssid: StringSSID of the access point.
password: Option<String>Password for the access point.
callback_id: u64Callback ID for success/failure.
Trait Implementations§
Source§impl Clone for WifiConnectRequest
impl Clone for WifiConnectRequest
Source§fn clone(&self) -> WifiConnectRequest
fn clone(&self) -> WifiConnectRequest
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for WifiConnectRequest
impl RefUnwindSafe for WifiConnectRequest
impl Send for WifiConnectRequest
impl Sync for WifiConnectRequest
impl Unpin for WifiConnectRequest
impl UnsafeUnpin for WifiConnectRequest
impl UnwindSafe for WifiConnectRequest
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