pub struct TxStatusFormat {
pub confirmed: bool,
pub block_height: Option<u32>,
pub block_hash: Option<String>,
pub block_time: u32,
}Fields§
§confirmed: bool§block_height: Option<u32>§block_hash: Option<String>§block_time: u32Trait Implementations§
Source§impl Debug for TxStatusFormat
impl Debug for TxStatusFormat
Source§impl<'de> Deserialize<'de> for TxStatusFormat
impl<'de> Deserialize<'de> for TxStatusFormat
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 TxStatusFormat
impl RefUnwindSafe for TxStatusFormat
impl Send for TxStatusFormat
impl Sync for TxStatusFormat
impl Unpin for TxStatusFormat
impl UnwindSafe for TxStatusFormat
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