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§
Source§impl Clone for PersistentData
impl Clone for PersistentData
Source§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 moreSource§impl Debug for PersistentData
impl Debug for PersistentData
Source§impl<'de> Deserialize<'de> for PersistentData
impl<'de> Deserialize<'de> for PersistentData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PersistentData
impl PartialEq for PersistentData
Source§impl Serialize for PersistentData
impl Serialize for PersistentData
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
)