pub struct TxInfo {
pub tx_hash: String,
pub height: u64,
pub index: u32,
pub data: String,
}Expand description
Response for the get_tx RPC method.
Fields§
§tx_hash: String§height: u64§index: u32§data: StringHex-encoded transaction bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TxInfo
impl RefUnwindSafe for TxInfo
impl Send for TxInfo
impl Sync for TxInfo
impl Unpin for TxInfo
impl UnsafeUnpin for TxInfo
impl UnwindSafe for TxInfo
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