pub struct PersistedClientState {
pub schema_version: u32,
pub state_version: u64,
pub request_journal: Vec<RequestJournalEntry>,
}Fields§
§schema_version: u32§state_version: u64§request_journal: Vec<RequestJournalEntry>Trait Implementations§
Source§impl Clone for PersistedClientState
impl Clone for PersistedClientState
Source§fn clone(&self) -> PersistedClientState
fn clone(&self) -> PersistedClientState
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 moreSource§impl Debug for PersistedClientState
impl Debug for PersistedClientState
Source§impl Default for PersistedClientState
impl Default for PersistedClientState
Source§impl<'de> Deserialize<'de> for PersistedClientState
impl<'de> Deserialize<'de> for PersistedClientState
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 PersistedClientState
impl PartialEq for PersistedClientState
Source§impl Serialize for PersistedClientState
impl Serialize for PersistedClientState
impl Eq for PersistedClientState
impl StructuralPartialEq for PersistedClientState
Auto Trait Implementations§
impl Freeze for PersistedClientState
impl RefUnwindSafe for PersistedClientState
impl Send for PersistedClientState
impl Sync for PersistedClientState
impl Unpin for PersistedClientState
impl UnsafeUnpin for PersistedClientState
impl UnwindSafe for PersistedClientState
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