Type Definition coroutine::Result [] [src]

type Result<T> = Result<T, Error>;

Return type of resuming. Ok if resume successfully with the current state, Err if resume failed with Error.