Assignment operators
Declared in <folly/tracing/AsyncStack.h>
Deleted copy assignment; frames are not copyable.
AsyncStackFrame&
operator=(AsyncStackFrame const& other) = delete;
» more...
Deleted move assignment; frames are not movable.
AsyncStackFrame&
operator=(AsyncStackFrame&& other) = delete;
» more...
Nothing; this overload is deleted.
| Name | Description |
|---|---|
| other | The frame that would be copied. |