pub struct InMemoryColdIndexPageStore { /* private fields */ }Implementations§
Trait Implementations§
Source§impl ColdIndexPageStore for InMemoryColdIndexPageStore
impl ColdIndexPageStore for InMemoryColdIndexPageStore
fn put_page<'a>( &'a self, key: &'a ColdIndexPageKey, page: &'a ColdIndexPage, ) -> ColdIndexPageStoreFuture<'a, ()>
fn get_page<'a>( &'a self, key: &'a ColdIndexPageKey, ) -> ColdIndexPageStoreFuture<'a, Option<ColdIndexPage>>
Source§impl Debug for InMemoryColdIndexPageStore
impl Debug for InMemoryColdIndexPageStore
Source§impl Default for InMemoryColdIndexPageStore
impl Default for InMemoryColdIndexPageStore
Source§fn default() -> InMemoryColdIndexPageStore
fn default() -> InMemoryColdIndexPageStore
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for InMemoryColdIndexPageStore
impl RefUnwindSafe for InMemoryColdIndexPageStore
impl Send for InMemoryColdIndexPageStore
impl Sync for InMemoryColdIndexPageStore
impl Unpin for InMemoryColdIndexPageStore
impl UnsafeUnpin for InMemoryColdIndexPageStore
impl UnwindSafe for InMemoryColdIndexPageStore
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