pub enum TransactionPhase {
Started,
Committed,
}Expand description
Transaction phase.
JSON schema
{
"description": "Transaction phase.",
"type": "string",
"enum": [
"Started",
"Committed"
]
}Variants§
Trait Implementations§
Source§impl Clone for TransactionPhase
impl Clone for TransactionPhase
Source§fn clone(&self) -> TransactionPhase
fn clone(&self) -> TransactionPhase
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 Debug for TransactionPhase
impl Debug for TransactionPhase
Source§impl<'de> Deserialize<'de> for TransactionPhase
impl<'de> Deserialize<'de> for TransactionPhase
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 From<&TransactionPhase> for TransactionPhase
impl From<&TransactionPhase> for TransactionPhase
Source§fn from(value: &TransactionPhase) -> Self
fn from(value: &TransactionPhase) -> Self
Converts to this type from the input type.
Source§impl FromStr for TransactionPhase
impl FromStr for TransactionPhase
Source§impl Hash for TransactionPhase
impl Hash for TransactionPhase
Source§impl Ord for TransactionPhase
impl Ord for TransactionPhase
Source§fn cmp(&self, other: &TransactionPhase) -> Ordering
fn cmp(&self, other: &TransactionPhase) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TransactionPhase
impl PartialEq for TransactionPhase
Source§impl PartialOrd for TransactionPhase
impl PartialOrd for TransactionPhase
Source§impl Serialize for TransactionPhase
impl Serialize for TransactionPhase
Source§impl ToString for TransactionPhase
impl ToString for TransactionPhase
Source§impl TryFrom<&String> for TransactionPhase
impl TryFrom<&String> for TransactionPhase
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for TransactionPhase
impl TryFrom<&str> for TransactionPhase
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for TransactionPhase
impl TryFrom<String> for TransactionPhase
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for TransactionPhase
impl Eq for TransactionPhase
impl StructuralPartialEq for TransactionPhase
Auto Trait Implementations§
impl Freeze for TransactionPhase
impl RefUnwindSafe for TransactionPhase
impl Send for TransactionPhase
impl Sync for TransactionPhase
impl Unpin for TransactionPhase
impl UnwindSafe for TransactionPhase
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,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.