pub struct TransactionParticipant {
pub id: String,
pub database: String,
pub state: TransactionState,
}Expand description
Participant in a distributed transaction
Fields§
§id: String§database: String§state: TransactionStateTrait Implementations§
Source§impl Clone for TransactionParticipant
impl Clone for TransactionParticipant
Source§fn clone(&self) -> TransactionParticipant
fn clone(&self) -> TransactionParticipant
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 moreAuto Trait Implementations§
impl Freeze for TransactionParticipant
impl RefUnwindSafe for TransactionParticipant
impl Send for TransactionParticipant
impl Sync for TransactionParticipant
impl Unpin for TransactionParticipant
impl UnwindSafe for TransactionParticipant
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