Struct bitcoin_rpc_client::ScriptPubKey[][src]

pub struct ScriptPubKey {
    pub asm: String,
    pub hex: Script,
    pub req_sigs: Option<u32>,
    pub script_type: ScriptType,
    pub addresses: Option<Vec<Address>>,
}

Fields

Trait Implementations

impl Debug for ScriptPubKey
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ScriptPubKey
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for ScriptPubKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations