pub enum TransactionOperationOperation {
Show 16 variants
Get(ObjectStoreRequest),
GetKey(ObjectStoreRequest),
Add(RecordRequest),
Put(RecordRequest),
Delete(ObjectStoreRequest),
Clear(ObjectStoreNameRequest),
GetAll(ObjectStoreRangeRequest),
GetAllKeys(ObjectStoreRangeRequest),
Count(ObjectStoreRangeRequest),
DeleteRange(ObjectStoreRangeRequest),
IndexGet(IndexQueryRequest),
IndexGetKey(IndexQueryRequest),
IndexGetAll(IndexQueryRequest),
IndexGetAllKeys(IndexQueryRequest),
IndexCount(IndexQueryRequest),
IndexDelete(IndexQueryRequest),
}Expand description
Values of the operation oneof in TransactionOperation; the message field is None when unset.
Variants§
Get(ObjectStoreRequest)
The get variant.
GetKey(ObjectStoreRequest)
The get_key variant.
Add(RecordRequest)
The add variant.
Put(RecordRequest)
The put variant.
Delete(ObjectStoreRequest)
The delete variant.
Clear(ObjectStoreNameRequest)
The clear variant.
GetAll(ObjectStoreRangeRequest)
The get_all variant.
GetAllKeys(ObjectStoreRangeRequest)
The get_all_keys variant.
Count(ObjectStoreRangeRequest)
The count variant.
DeleteRange(ObjectStoreRangeRequest)
The delete_range variant.
IndexGet(IndexQueryRequest)
The index_get variant.
IndexGetKey(IndexQueryRequest)
The index_get_key variant.
IndexGetAll(IndexQueryRequest)
The index_get_all variant.
IndexGetAllKeys(IndexQueryRequest)
The index_get_all_keys variant.
IndexCount(IndexQueryRequest)
The index_count variant.
IndexDelete(IndexQueryRequest)
The index_delete variant.
Trait Implementations§
Source§impl Clone for TransactionOperationOperation
impl Clone for TransactionOperationOperation
Source§fn clone(&self) -> TransactionOperationOperation
fn clone(&self) -> TransactionOperationOperation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for TransactionOperationOperation
impl<'de> Deserialize<'de> for TransactionOperationOperation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for TransactionOperationOperation
Auto Trait Implementations§
impl Freeze for TransactionOperationOperation
impl RefUnwindSafe for TransactionOperationOperation
impl Send for TransactionOperationOperation
impl Sync for TransactionOperationOperation
impl Unpin for TransactionOperationOperation
impl UnsafeUnpin for TransactionOperationOperation
impl UnwindSafe for TransactionOperationOperation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request