[][src]Struct cashweb_relay::stamp::StampOutpoints

pub struct StampOutpoints {
    pub stamp_tx: Vec<u8>,
    pub vouts: Vec<u32>,
}

A stamp transaction paired with a list of vouts identifying to stamp outputs.

Fields

stamp_tx: Vec<u8>

A serialized stamp transaction.

vouts: Vec<u32>

The specified outputs of the stamp transaction.

Trait Implementations

impl Clone for StampOutpoints[src]

impl Debug for StampOutpoints[src]

impl Default for StampOutpoints[src]

impl Message for StampOutpoints[src]

impl PartialEq<StampOutpoints> for StampOutpoints[src]

impl StructuralPartialEq for StampOutpoints[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> Same<T> for T

type Output = T

Should always be Self

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.