Struct PersistentData
pub struct PersistentData {
pub credential: Credential,
pub has_ever_connected: bool,
}
Expand description
The data that will be stored between reboots of a device. Used to convert the data between JSON and network config.
Fields§
§credential: Credential
§has_ever_connected: bool
Trait Implementations§
§impl Clone for PersistentData
impl Clone for PersistentData
§fn clone(&self) -> PersistentData
fn clone(&self) -> PersistentData
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 more§impl Debug for PersistentData
impl Debug for PersistentData
§impl<'de> Deserialize<'de> for PersistentData
impl<'de> Deserialize<'de> for PersistentData
§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PersistentData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PersistentData, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for PersistentData
impl PartialEq for PersistentData
§impl Serialize for PersistentData
impl Serialize for PersistentData
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PersistentData
Auto Trait Implementations§
impl Freeze for PersistentData
impl RefUnwindSafe for PersistentData
impl Send for PersistentData
impl Sync for PersistentData
impl Unpin for PersistentData
impl UnwindSafe for PersistentData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)