Closed
Description
The prelude module from which the macro should be imported is defined like this:
pub use serde::Serialize;
pub use job::{Args, Job, JobName, JobResult, PerformJob};
pub use error::RobinResult;
pub use connection::{establish, LookupJob, WorkerConnection};
pub use worker::boot;
pub use config::Config;
pub use robin_derives::*;
pub use macros::*;
I suspect that the glob import here isn't properly being treated as introducing Job, but without a bisection/further debugging hard to say.