Type Alias maelstrom_base::JobStringResult
source · pub type JobStringResult = JobResult<JobSuccess, String>;Expand description
All relevant information about the outcome of a job. This is what’s sent around between the Worker, Broker, and Client.
Aliased Type§
enum JobStringResult {
Ok(JobSuccess),
Err(JobError<String>),
}