[#CCoinsViewCache-ResetGuard-operator_assign-0b] = xref:CCoinsViewCache.adoc[CCoinsViewCache]::xref:CCoinsViewCache/ResetGuard.adoc[ResetGuard]::operator= :relfileprefix: ../../ :mrdocs: Assignment operators == Synopses Declared in `<coins.h>` Copy assignment is disabled so the cache is reset exactly once. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:CCoinsViewCache/ResetGuard.adoc[ResetGuard]& xref:CCoinsViewCache/ResetGuard/operator_assign-0e8.adoc[operator=](xref:CCoinsViewCache/ResetGuard.adoc[ResetGuard] const& other) = delete; ---- [.small]#xref:CCoinsViewCache/ResetGuard/operator_assign-0e8.adoc[_» more..._]# Move assignment is disabled so the cache is reset exactly once. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:CCoinsViewCache/ResetGuard.adoc[ResetGuard]& xref:CCoinsViewCache/ResetGuard/operator_assign-0e9.adoc[operator=](xref:CCoinsViewCache/ResetGuard.adoc[ResetGuard]&& other) = delete; ---- [.small]#xref:CCoinsViewCache/ResetGuard/operator_assign-0e9.adoc[_» more..._]# == Return Value Never returns; this overload is deleted. == Parameters [cols="1,4"] |=== | Name| Description | *other* | The guard that would be assigned from (assignment is disabled). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#