This PR fixes special member functions in the following class/struct definitions:
struct PartiallySignedTransaction(done in #17349) The default (i.e., generated by a compiler) copy constructor does the same things. It prevents-Wdeprecated-copywarning in GCC 9 (#15822) and-Wdeprecatedwarning in Clang 10 for implicitly declaredoperator=class SigningProviderAll special member functions of the SigningProvider class defined=defaultwhich makes it a well-behaved base class. It prevents-Wdeprecatedwarning in Clang 10struct secure_allocatorDefine=defaultcopy assignment explicitly. It prevents-Wdeprecatedwarning in Clang 10struct FrozenCleanupCheckDefine=defaultcopy constructor explicitly. It prevents-Wdeprecatedwarning in Clang 10