pub trait LookupJob { // Required method fn lookup(&self, name: &JobName) -> Option<Box<dyn Job + Send>>; }
Trait that maps a String given to Robin by Redis to an actual job type.
String
Perform the lookup.