| 92 | protected_function_result& operator=(unsafe_function_result&& o) noexcept; |
| 93 | |
| 94 | call_status status() const noexcept { |
| 95 | return err; |
| 96 | } |
| 97 | |
| 98 | bool valid() const noexcept { |
| 99 | return status() == call_status::ok || status() == call_status::yielded; |
nothing calls this directly
no outgoing calls
no test coverage detected