pub struct IngestConnect { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for IngestConnect
impl Clone for IngestConnect
Source§fn clone(&self) -> IngestConnect
fn clone(&self) -> IngestConnect
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Service for IngestConnect
impl Service for IngestConnect
Source§async fn put(
&self,
_ctx: Context,
request: OwnedView<PutRequestView<'static>>,
) -> Result<(ProtoPutResponse, Context), ConnectError>
async fn put( &self, _ctx: Context, request: OwnedView<PutRequestView<'static>>, ) -> Result<(ProtoPutResponse, Context), ConnectError>
Atomically write a batch of key-value pairs. On success the entire batch
is persisted and the response carries the store sequence number that
covers this write. Clients can pass that sequence number to query RPCs
(via
min_sequence_number) for read-after-write consistency.Auto Trait Implementations§
impl Freeze for IngestConnect
impl !RefUnwindSafe for IngestConnect
impl Send for IngestConnect
impl Sync for IngestConnect
impl Unpin for IngestConnect
impl UnsafeUnpin for IngestConnect
impl !UnwindSafe for IngestConnect
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