[][src]Struct lightning::chain::transaction::OutPoint

pub struct OutPoint {
    pub txid: Sha256dHash,
    pub index: u16,
}

A reference to a transaction output.

Differs from bitcoin::blockdata::transaction::OutPoint as the index is a u16 instead of u32 due to LN's restrictions on index values. Should reduce (possibly) unsafe conversions this way.

Fields

txid: Sha256dHash

The referenced transaction's txid.

index: u16

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

Methods

impl OutPoint
[src]

pub fn new(txid: Sha256dHash, index: u16) -> OutPoint
[src]

Creates a new OutPoint from the txid and the index.

pub fn to_channel_id(&self) -> [u8; 32]
[src]

Convert an OutPoint to a lightning channel id.

pub fn into_bitcoin_outpoint(self) -> BitcoinOutPoint
[src]

Converts this OutPoint into the OutPoint field as used by rust-bitcoin

Trait Implementations

impl Eq for OutPoint
[src]

impl PartialOrd<OutPoint> for OutPoint
[src]

impl Copy for OutPoint
[src]

impl PartialEq<OutPoint> 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 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 Debug for OutPoint
[src]

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

Auto Trait Implementations

impl Send for OutPoint

impl Sync for OutPoint

Blanket Implementations

impl<T> From for T
[src]

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, U> TryFrom for T where
    T: From<U>, 
[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> BorrowMut 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]