D++ (DPP)
C++ Discord API Bot Library
|
Struct returned by a coroutine's final_suspend, resumes the continuation. More...
#include <coroutine.h>
Public Member Functions | |
bool | await_ready () const noexcept |
First function called by the standard library when reaching the end of a coroutine. More... | |
std_coroutine::coroutine_handle | await_suspend (std_coroutine::coroutine_handle< promise_t< R > > handle) const noexcept |
Second function called by the standard library when reaching the end of a coroutine. More... | |
void | await_resume () const noexcept |
Function called by the standard library when this object is resumed. More... | |
Struct returned by a coroutine's final_suspend, resumes the continuation.
|
inlinenoexcept |
First function called by the standard library when reaching the end of a coroutine.
|
inlinenoexcept |
Function called by the standard library when this object is resumed.
|
inlinenoexcept |
Second function called by the standard library when reaching the end of a coroutine.