pub struct ResolvedTx {
pub hash: String,
pub tx_hex: String,
/* private fields */
}Expand description
A resolved transaction ready for signing.
Fields§
§hash: StringTransaction hash.
tx_hex: StringHex-encoded CBOR transaction bytes.
Implementations§
Auto Trait Implementations§
impl Freeze for ResolvedTx
impl !RefUnwindSafe for ResolvedTx
impl Send for ResolvedTx
impl Sync for ResolvedTx
impl Unpin for ResolvedTx
impl UnsafeUnpin for ResolvedTx
impl !UnwindSafe for ResolvedTx
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