Struct feattle_core::persist::NoPersistence
source · [−]pub struct NoPersistence;Expand description
A mock implementation that does not store the information anywhere.
Trait Implementations
sourceimpl Clone for NoPersistence
impl Clone for NoPersistence
sourcefn clone(&self) -> NoPersistence
fn clone(&self) -> NoPersistence
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for NoPersistence
impl Debug for NoPersistence
sourceimpl PartialEq<NoPersistence> for NoPersistence
impl PartialEq<NoPersistence> for NoPersistence
sourceimpl Persist for NoPersistence
impl Persist for NoPersistence
type Error = Error
sourcefn save_current<'life0, 'life1, 'async_trait>(
&'life0 self,
_value: &'life1 CurrentValues
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn save_current<'life0, 'life1, 'async_trait>(
&'life0 self,
_value: &'life1 CurrentValues
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Save current state of all feattles.
sourcefn load_current<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Option<CurrentValues>, Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn load_current<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<Option<CurrentValues>, Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Load the current state of all feattles. With no previous state existed, Ok(None) should be
returned. Read more
sourcefn save_history<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
_key: &'life1 str,
_value: &'life2 ValueHistory
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
fn save_history<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
_key: &'life1 str,
_value: &'life2 ValueHistory
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Self: 'async_trait,
Save the full history of a single feattle.
sourcefn load_history<'life0, 'life1, 'async_trait>(
&'life0 self,
_key: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Option<ValueHistory>, Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn load_history<'life0, 'life1, 'async_trait>(
&'life0 self,
_key: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Option<ValueHistory>, Self::Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Load the full history of a single feattle. With the feattle has no history, Ok(None)
should be returned. Read more
impl Copy for NoPersistence
impl StructuralPartialEq for NoPersistence
Auto Trait Implementations
impl RefUnwindSafe for NoPersistence
impl Send for NoPersistence
impl Sync for NoPersistence
impl Unpin for NoPersistence
impl UnwindSafe for NoPersistence
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more