menu
GeneratorResumeFinish
import { GeneratorResumeFinish } from "destack:async";
Run the body's return path with one completion value.
1export struct GeneratorResumeFinish<R> {2 kind: "finish";3 value: R;4}Members
kind: "finish"The request tag.
value: RValue carried to the body return.