Struct sov_rollup_interface::rpc::TxIdAndKey
source · 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<TxIdAndKey> for TxIdAndKey
impl PartialEq<TxIdAndKey> for TxIdAndKey
source§fn eq(&self, other: &TxIdAndKey) -> bool
fn eq(&self, other: &TxIdAndKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TxIdAndKey
impl Serialize for TxIdAndKey
impl StructuralPartialEq for TxIdAndKey
Auto Trait Implementations§
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