[][src]Struct bitcoin::blockdata::transaction::TxOut

pub struct TxOut {
    pub value: u64,
    pub script_pubkey: Script,
}

A transaction output, which defines new coins to be created from old ones.

Fields

value: u64

The value of the output, in satoshis

script_pubkey: Script

The script which must satisfy for the output to be spent

Trait Implementations

impl Clone for TxOut[src]

impl Debug for TxOut[src]

impl Decodable for TxOut[src]

impl Default for TxOut[src]

impl Deserialize for TxOut[src]

impl Encodable for TxOut[src]

impl Eq for TxOut[src]

impl Hash for TxOut[src]

impl PartialEq<TxOut> for TxOut[src]

impl Serialize for TxOut[src]

impl StructuralEq for TxOut[src]

impl StructuralPartialEq for TxOut[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.