pub enum TransactionAction {
    ListExecuted,
    GetLastId,
}Expand description
Actions that operate on transactions.
Variants§
ListExecuted
Allows listing executed transactions with
Connection::list_executed_transactions().
This action is checked against the database’s resource name. See
database_resource_name() for the format of database resource names.
GetLastId
Allows retrieving the last executed transaction id with
Connection::last_transaction_id().
This action is checked against the database’s resource name. See
database_resource_name() for the format of database resource names.
Trait Implementations§
source§impl Action for TransactionAction
 
impl Action for TransactionAction
source§fn name(&self) -> ActionName
 
fn name(&self) -> ActionName
The full name of this action.
source§impl Clone for TransactionAction
 
impl Clone for TransactionAction
source§fn clone(&self) -> TransactionAction
 
fn clone(&self) -> TransactionAction
Returns a copy 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 Debug for TransactionAction
 
impl Debug for TransactionAction
source§impl<'de> Deserialize<'de> for TransactionAction
 
impl<'de> Deserialize<'de> for TransactionAction
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
source§impl Serialize for TransactionAction
 
impl Serialize for TransactionAction
impl Copy for TransactionAction
Auto Trait Implementations§
impl RefUnwindSafe for TransactionAction
impl Send for TransactionAction
impl Sync for TransactionAction
impl Unpin for TransactionAction
impl UnwindSafe for TransactionAction
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