Enum bonsaidb::core::permissions::bonsai::TransactionAction
source · 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<TransactionAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<TransactionAction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for TransactionAction
impl Serialize for TransactionAction
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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