pub struct TxIdAndKey {
pub tx_id: TxIdentifier,
pub key: EventKey,
}
Expand description
A struct containing enough information to uniquely specify single event.
Fields§
§tx_id: TxIdentifier
The TxIdentifier
of the transaction containing this event.
key: EventKey
The key of the event.
Trait Implementations§
Source§impl Debug for TxIdAndKey
impl Debug for TxIdAndKey
Source§impl<'de> Deserialize<'de> for TxIdAndKey
impl<'de> Deserialize<'de> for TxIdAndKey
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 PartialEq for TxIdAndKey
impl PartialEq for TxIdAndKey
Source§impl Serialize for TxIdAndKey
impl Serialize for TxIdAndKey
impl StructuralPartialEq for TxIdAndKey
Auto Trait Implementations§
impl Freeze for TxIdAndKey
impl RefUnwindSafe for TxIdAndKey
impl Send for TxIdAndKey
impl Sync for TxIdAndKey
impl Unpin for TxIdAndKey
impl UnwindSafe for TxIdAndKey
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