[][src]Struct hal_elements::tx::PeginDataInfo

pub struct PeginDataInfo {
    pub outpoint: String,
    pub value: u64,
    pub asset: ConfidentialAssetInfo,
    pub genesis_hash: BlockHash,
    pub claim_script: HexBytes,
    pub mainchain_tx_hex: HexBytes,
    pub mainchain_tx: Option<TransactionInfo>,
    pub merkle_proof: HexBytes,
    pub referenced_block: BlockHash,
}

Fields

outpoint: Stringvalue: u64asset: ConfidentialAssetInfogenesis_hash: BlockHashclaim_script: HexBytesmainchain_tx_hex: HexBytesmainchain_tx: Option<TransactionInfo>merkle_proof: HexBytesreferenced_block: BlockHash

Trait Implementations

impl Clone for PeginDataInfo[src]

impl Debug for PeginDataInfo[src]

impl<'de> Deserialize<'de> for PeginDataInfo[src]

impl Eq for PeginDataInfo[src]

impl<'tx> GetInfo<PeginDataInfo> for PeginData<'tx>[src]

impl PartialEq<PeginDataInfo> for PeginDataInfo[src]

impl Serialize for PeginDataInfo[src]

impl StructuralEq for PeginDataInfo[src]

impl StructuralPartialEq for PeginDataInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.