pub struct IndexTable<T, E> { /* private fields */ }
Implementations§
Source§impl<T, E> IndexTable<T, E>where
T: ReadTable<E>,
E: BackendError,
impl<T, E> IndexTable<T, E>where
T: ReadTable<E>,
E: BackendError,
pub fn read(&self, snapshot: &SnapshotId, n: u32) -> Result<Option<SnapshotId>>
Source§impl<T, E> IndexTable<T, E>where
T: WriteTable<E>,
E: BackendError,
impl<T, E> IndexTable<T, E>where
T: WriteTable<E>,
E: BackendError,
pub fn write( &mut self, snapshot: &SnapshotId, k1: &SnapshotId, version: Version, ) -> Result<()>
Auto Trait Implementations§
impl<T, E> Freeze for IndexTable<T, E>where
T: Freeze,
impl<T, E> RefUnwindSafe for IndexTable<T, E>where
T: RefUnwindSafe,
E: RefUnwindSafe,
impl<T, E> Send for IndexTable<T, E>
impl<T, E> Sync for IndexTable<T, E>
impl<T, E> Unpin for IndexTable<T, E>
impl<T, E> UnwindSafe for IndexTable<T, E>where
T: UnwindSafe,
E: 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