pub struct InMemoryStateStore { /* private fields */ }Trait Implementations§
Source§impl ClientStateStore for InMemoryStateStore
impl ClientStateStore for InMemoryStateStore
fn load(&self) -> Result<PersistedClientState, ClientError>
fn save(&self, state: &PersistedClientState) -> Result<(), ClientError>
fn append_request_journal( &self, entry: &RequestJournalEntry, ) -> Result<(), ClientError>
Source§impl Debug for InMemoryStateStore
impl Debug for InMemoryStateStore
Source§impl Default for InMemoryStateStore
impl Default for InMemoryStateStore
Source§fn default() -> InMemoryStateStore
fn default() -> InMemoryStateStore
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for InMemoryStateStore
impl RefUnwindSafe for InMemoryStateStore
impl Send for InMemoryStateStore
impl Sync for InMemoryStateStore
impl Unpin for InMemoryStateStore
impl UnsafeUnpin for InMemoryStateStore
impl UnwindSafe for InMemoryStateStore
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