pub struct Stash<P>where
P: StashProvider,{ /* private fields */ }Trait Implementations§
Source§impl<P> CloneNoPersistence for Stash<P>where
P: StashProvider,
impl<P> CloneNoPersistence for Stash<P>where
P: StashProvider,
fn clone_no_persistence(&self) -> Stash<P>
Source§impl<P> StoreTransaction for Stash<P>where
P: StashProvider,
impl<P> StoreTransaction for Stash<P>where
P: StashProvider,
type TransactionErr = StashError<P>
fn begin_transaction( &mut self, ) -> Result<(), <Stash<P> as StoreTransaction>::TransactionErr>
fn commit_transaction( &mut self, ) -> Result<(), <Stash<P> as StoreTransaction>::TransactionErr>
fn rollback_transaction(&mut self)
Auto Trait Implementations§
impl<P> Freeze for Stash<P>where
P: Freeze,
impl<P> RefUnwindSafe for Stash<P>where
P: RefUnwindSafe,
impl<P> Send for Stash<P>where
P: Send,
impl<P> Sync for Stash<P>where
P: Sync,
impl<P> Unpin for Stash<P>where
P: Unpin,
impl<P> UnwindSafe for Stash<P>where
P: UnwindSafe,
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