SyncJob

Trait SyncJob 

Source
pub trait SyncJob: Job {
    // Required method
    fn execute(self, mid: i64, state: Self::State) -> Result<(), String>;
}

Required Methods§

Source

fn execute(self, mid: i64, state: Self::State) -> Result<(), String>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§