pub struct TxOut {
pub value: u64,
pub script_pubkey: Vec<u8>,
}Expand description
A transaction output.
Fields§
§value: u64Value in satoshis.
script_pubkey: Vec<u8>The scriptPubKey.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TxOut
impl RefUnwindSafe for TxOut
impl Send for TxOut
impl Sync for TxOut
impl Unpin for TxOut
impl UnsafeUnpin for TxOut
impl UnwindSafe for TxOut
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