#[repr(u8)]
pub enum TrDataAccessMode {
ReadWrite,
ReadOnly,
}
Expand description
Data access mode
Variants§
ReadWrite
Operations in the context of this transaction can be both read operations and data update operations
ReadOnly
Only SELECT operations can be executed in the context of this transaction
Trait Implementations§
source§impl Clone for TrDataAccessMode
impl Clone for TrDataAccessMode
source§fn clone(&self) -> TrDataAccessMode
fn clone(&self) -> TrDataAccessMode
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 TrDataAccessMode
impl Debug for TrDataAccessMode
source§impl Default for TrDataAccessMode
impl Default for TrDataAccessMode
source§impl PartialEq<TrDataAccessMode> for TrDataAccessMode
impl PartialEq<TrDataAccessMode> for TrDataAccessMode
source§fn eq(&self, other: &TrDataAccessMode) -> bool
fn eq(&self, other: &TrDataAccessMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.