Assignment operators
Declared in <kernel/bitcoinkernel_wrapper.h>
Copy-assigns by duplicating the other handle's C object.
Handle<btck_ScriptPubkey, &btck_script_pubkey_copy, &btck_script_pubkey_destroy>&
operator=(Handle<btck_ScriptPubkey, &btck_script_pubkey_copy, &btck_script_pubkey_destroy> const& other);
» more...
Move-assigns, destroying the current object and taking other's.
Handle<btck_ScriptPubkey, &btck_script_pubkey_copy, &btck_script_pubkey_destroy>&
operator=(Handle<btck_ScriptPubkey, &btck_script_pubkey_copy, &btck_script_pubkey_destroy>&& other) noexcept;
» more...
A reference to this handle.
| Name | Description |
|---|---|
| other | The handle to copy from. |