folly::AsyncStackFrame::operator=

Assignment operators

Synopses

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...

Return Value

Nothing; this overload is deleted.

Parameters

NameDescription
otherThe frame that would be copied.