pub enum TransactionIdentifier {
Id(u64),
Reference(String),
}
Expand description
Transaction identifier.
It can either be a transaction reference or a transaction ID
Variants§
Auto Trait Implementations§
impl Freeze for TransactionIdentifier
impl RefUnwindSafe for TransactionIdentifier
impl Send for TransactionIdentifier
impl Sync for TransactionIdentifier
impl Unpin for TransactionIdentifier
impl UnwindSafe for TransactionIdentifier
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