btcsignals::scoped_connection::operator=

Assignment operators

Synopses

Declared in <util/btcsignals.h>

Copy assignment is deleted.

scoped_connection&
operator=(scoped_connection const& other) = delete;
» more...

For simplicity, disable copy construction and copy/move assignment.

scoped_connection&
operator=(scoped_connection&& other) = delete;
» more...

Parameters

NameDescription
otherThe right-hand side operand (unused, this overload is deleted).