pub trait IntoJobResponse {
    fn into_response(self) -> Result<JobResult, JobError>;
}
Expand description

Helper for Job Responses

Required Methods

converts self into a Result

Implementations on Foreign Types

Implementors