pub struct PendingPublication {
pub tx_hash: Vec<u8>,
pub commitment_hash: Hash,
pub submitted_at: u64,
}Expand description
Represents a transaction awaiting on-chain inclusion
Fields§
§tx_hash: Vec<u8>Transaction hash
commitment_hash: HashCommitment hash being published
submitted_at: u64Unix epoch seconds when submission occurred
Trait Implementations§
Source§impl Clone for PendingPublication
impl Clone for PendingPublication
Source§fn clone(&self) -> PendingPublication
fn clone(&self) -> PendingPublication
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 PendingPublication
impl RefUnwindSafe for PendingPublication
impl Send for PendingPublication
impl Sync for PendingPublication
impl Unpin for PendingPublication
impl UnsafeUnpin for PendingPublication
impl UnwindSafe for PendingPublication
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