pub struct InflightTx {
pub hash: String,
pub stage: String,
pub confirmations: u64,
pub non_confirmations: u64,
pub confirmed_at: Option<ChainPoint>,
pub payload: Option<String>,
}Fields§
§hash: String§stage: String§confirmations: u64§non_confirmations: u64§confirmed_at: Option<ChainPoint>§payload: Option<String>Trait Implementations§
Source§impl Clone for InflightTx
impl Clone for InflightTx
Source§fn clone(&self) -> InflightTx
fn clone(&self) -> InflightTx
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 moreSource§impl Debug for InflightTx
impl Debug for InflightTx
Source§impl<'de> Deserialize<'de> for InflightTx
impl<'de> Deserialize<'de> for InflightTx
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
Auto Trait Implementations§
impl Freeze for InflightTx
impl RefUnwindSafe for InflightTx
impl Send for InflightTx
impl Sync for InflightTx
impl Unpin for InflightTx
impl UnsafeUnpin for InflightTx
impl UnwindSafe for InflightTx
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