pub enum AnyIngestion<'a> {
Standard(Ingestion<'a>),
Blob(BlobIngestion<'a>),
}Expand description
Unified ingestion builder over AnyTree
Variants§
Standard(Ingestion<'a>)
Ingestion for a standard LSM-tree
Blob(BlobIngestion<'a>)
Ingestion for a [BlobTree] with KV separation
Implementations§
Auto Trait Implementations§
impl<'a> Freeze for AnyIngestion<'a>
impl<'a> !RefUnwindSafe for AnyIngestion<'a>
impl<'a> !Send for AnyIngestion<'a>
impl<'a> !Sync for AnyIngestion<'a>
impl<'a> Unpin for AnyIngestion<'a>
impl<'a> !UnwindSafe for AnyIngestion<'a>
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