Struct exonum_btc_anchoring::blockchain::KnownSignatureId [] [src]

pub struct KnownSignatureId {
    pub txid: TxId,
    pub validator_id: ValidatorId,
    pub input: u32,
}

Unique identifier of signature for the AnchoringTx.

Fields

Normalized txid of the AnchoringTx.

Identifier of the anchoring node in the current configuration.

Transaction input for the signature.

Trait Implementations

impl Debug for KnownSignatureId
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for KnownSignatureId
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl StorageKey for KnownSignatureId
[src]

[src]

Returns the size of the serialized key in bytes.

[src]

Serializes the key into the specified buffer of bytes. Read more

[src]

Deserializes the key from the specified buffer of bytes.

impl<'a> From<&'a MsgAnchoringSignature> for KnownSignatureId
[src]

[src]

Performs the conversion.

Auto Trait Implementations