pub struct PersistentState { /* private fields */ }Expand description
Persistent state of an observed network.
Information like hardware addresses and version numbers are exchanged infrequently. This data
is captured and stored in PersistentState.
Trait Implementations§
Source§impl Clone for PersistentState
impl Clone for PersistentState
Source§fn clone(&self) -> PersistentState
fn clone(&self) -> PersistentState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PersistentState
impl Debug for PersistentState
Source§impl Default for PersistentState
impl Default for PersistentState
Source§fn default() -> PersistentState
fn default() -> PersistentState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PersistentState
impl<'de> Deserialize<'de> for PersistentState
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
impl Eq for PersistentState
Source§impl PartialEq for PersistentState
impl PartialEq for PersistentState
Source§fn eq(&self, other: &PersistentState) -> bool
fn eq(&self, other: &PersistentState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PersistentState
impl Serialize for PersistentState
impl StructuralPartialEq for PersistentState
Auto Trait Implementations§
impl Freeze for PersistentState
impl RefUnwindSafe for PersistentState
impl Send for PersistentState
impl Sync for PersistentState
impl Unpin for PersistentState
impl UnsafeUnpin for PersistentState
impl UnwindSafe for PersistentState
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