pub struct InMemoryContinuousPageCursorStore { /* private fields */ }Trait Implementations§
Source§impl ContinuousPageCursorStore for InMemoryContinuousPageCursorStore
impl ContinuousPageCursorStore for InMemoryContinuousPageCursorStore
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
query_key: &'life1 str,
target_offset: u64,
) -> Pin<Box<dyn Future<Output = Result<Option<ContinuousPageCursor>, String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn put<'life0, 'async_trait>(
&'life0 self,
cursor: ContinuousPageCursor,
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn invalidate<'life0, 'life1, 'async_trait>(
&'life0 self,
query_key: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl !Freeze for InMemoryContinuousPageCursorStore
impl RefUnwindSafe for InMemoryContinuousPageCursorStore
impl Send for InMemoryContinuousPageCursorStore
impl Sync for InMemoryContinuousPageCursorStore
impl Unpin for InMemoryContinuousPageCursorStore
impl UnsafeUnpin for InMemoryContinuousPageCursorStore
impl UnwindSafe for InMemoryContinuousPageCursorStore
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