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

pub struct OutPoint {
    pub txid: Sha256dHash,
    pub vout: u32,
}

A reference to a transaction output

Fields

txid: Sha256dHash

The referenced transaction's txid

vout: u32

The index of the referenced output in its transaction's vout

Methods

impl OutPoint[src]

pub fn null() -> OutPoint[src]

Creates a "null" OutPoint.

This value is used for coinbase transactions because they don't have any previous outputs.

pub fn is_null(&self) -> bool[src]

Checks if an OutPoint is "null".

Examples

use bitcoin::blockdata::constants::genesis_block;
use bitcoin::network::constants::Network;

let block = genesis_block(Network::Bitcoin);
let tx = &block.txdata[0];

// Coinbase transactions don't have any previous output.
assert_eq!(tx.input[0].previous_output.is_null(), true);

Trait Implementations

impl<S: Encoder> Encodable<S> for OutPoint[src]

impl<D: Decoder> Decodable<D> for OutPoint[src]

impl Eq for OutPoint[src]

impl Clone for OutPoint[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for OutPoint[src]

impl PartialOrd<OutPoint> for OutPoint[src]

impl PartialEq<OutPoint> for OutPoint[src]

impl Default for OutPoint[src]

impl Ord for OutPoint[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Hash for OutPoint[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for OutPoint[src]

impl Display for OutPoint[src]

impl FromStr for OutPoint[src]

type Err = ParseOutPointError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for OutPoint

impl Sync for OutPoint

Blanket Implementations

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

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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