Struct hal_elements::address::AddressInfo
source · [−]pub struct AddressInfo {
pub network: Network,
pub type_: Option<String>,
pub script_pub_key: OutputScriptInfo,
pub witness_program_version: Option<usize>,
pub pubkey_hash: Option<PubkeyHash>,
pub script_hash: Option<ScriptHash>,
pub witness_pubkey_hash: Option<WPubkeyHash>,
pub witness_script_hash: Option<WScriptHash>,
pub blinding_pubkey: Option<PublicKey>,
pub unconfidential: Option<Address>,
}Fields
network: Networktype_: Option<String>script_pub_key: OutputScriptInfowitness_program_version: Option<usize>pubkey_hash: Option<PubkeyHash>script_hash: Option<ScriptHash>witness_pubkey_hash: Option<WPubkeyHash>witness_script_hash: Option<WScriptHash>blinding_pubkey: Option<PublicKey>unconfidential: Option<Address>Trait Implementations
sourceimpl Clone for AddressInfo
impl Clone for AddressInfo
sourcefn clone(&self) -> AddressInfo
fn clone(&self) -> AddressInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AddressInfo
impl Debug for AddressInfo
sourceimpl<'de> Deserialize<'de> for AddressInfo
impl<'de> Deserialize<'de> for AddressInfo
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<AddressInfo> for AddressInfo
impl PartialEq<AddressInfo> for AddressInfo
sourcefn eq(&self, other: &AddressInfo) -> bool
fn eq(&self, other: &AddressInfo) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AddressInfo) -> bool
fn ne(&self, other: &AddressInfo) -> bool
This method tests for !=.
sourceimpl Serialize for AddressInfo
impl Serialize for AddressInfo
impl Eq for AddressInfo
impl StructuralEq for AddressInfo
impl StructuralPartialEq for AddressInfo
Auto Trait Implementations
impl RefUnwindSafe for AddressInfo
impl Send for AddressInfo
impl Sync for AddressInfo
impl Unpin for AddressInfo
impl UnwindSafe for AddressInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more