[][src]Struct elements::OutPoint

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

A reference to a transaction output

Fields

txid: Txid

The referenced transaction's txid

vout: u32

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

Trait Implementations

impl BitcoinHash<Txid> for OutPoint[src]

impl Clone for OutPoint[src]

impl Copy for OutPoint[src]

impl Debug for OutPoint[src]

impl Decodable for OutPoint[src]

impl Default for OutPoint[src]

fn default() -> OutPoint[src]

Coinbase outpoint

impl Display for OutPoint[src]

impl Encodable for OutPoint[src]

impl Eq for OutPoint[src]

impl FromStr for OutPoint[src]

type Err = ParseOutPointError

The associated error which can be returned from parsing.

impl Hash for OutPoint[src]

impl Ord for OutPoint[src]

impl PartialEq<OutPoint> for OutPoint[src]

impl PartialOrd<OutPoint> for OutPoint[src]

impl StructuralEq for OutPoint[src]

impl StructuralPartialEq for OutPoint[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> ToString for T where
    T: Display + ?Sized
[src]

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.