Struct bitcoin::util::address::Address[][src]

pub struct Address {
    pub payload: Payload,
    pub network: Network,
}

A Bitcoin address

Fields

The type of the address

The network on which this address is usable

Methods

impl Address
[src]

Creates a pay to (compressed) public key hash address from a public key This is the preferred non-witness type address

Creates a pay to uncompressed public key hash address from a public key This address type is discouraged as it uses more space but otherwise equivalent to p2pkh therefore only adds ambiguity

Creates a pay to public key address from a public key This address type was used in the early history of Bitcoin. Satoshi's coins are still on addresses of this type.

Creates a pay to script hash P2SH address from a script This address type was introduced with BIP16 and is the popular ty implement multi-sig these days.

Create a witness pay to public key address from a public key This is the native segwit address type for an output redemable with a single signature

Create a pay to script address that embeds a witness pay to public key This is a segwit address type that looks familiar (as p2sh) to legacy clients

Create a witness pay to script hash address

Create a pay to script address that embeds a witness pay to script hash address This is a segwit address type that looks familiar (as p2sh) to legacy clients

Generates a script pubkey spending to this address

Trait Implementations

impl Clone for Address
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Address
[src]

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

This method tests for !=.

impl Eq for Address
[src]

impl PartialOrd for Address
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for Address
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for Address
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for Address
[src]

Formats the value using the given formatter. Read more

impl FromStr for Address
[src]

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

impl Debug for Address
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Address

impl Sync for Address