pub trait Worker { // Provided method fn analyze( &mut self, _ctx: &mut Context, _layer: &mut Layer, ) -> Result<(), Error> { ... } }