pub struct Ingest<'a> { /* private fields */ }Implementations§
Source§impl<'a> Ingest<'a>
impl<'a> Ingest<'a>
pub async fn put(&self, kvs: &[(&Key, &[u8])]) -> Result<u64, ClientError>
Sourcepub async fn put_prepared(
&self,
batch: &StoreWriteBatch,
) -> Result<u64, ClientError>
pub async fn put_prepared( &self, batch: &StoreWriteBatch, ) -> Result<u64, ClientError>
Submit a StoreWriteBatch that has already been encoded into the
physical Store keyspace.
Trait Implementations§
impl<'a> Copy for Ingest<'a>
Auto Trait Implementations§
impl<'a> Freeze for Ingest<'a>
impl<'a> !RefUnwindSafe for Ingest<'a>
impl<'a> Send for Ingest<'a>
impl<'a> Sync for Ingest<'a>
impl<'a> Unpin for Ingest<'a>
impl<'a> UnsafeUnpin for Ingest<'a>
impl<'a> !UnwindSafe for Ingest<'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