pub trait Picker<S, Req> { // Required method fn pick(&mut self, r: &Req, services: &[S]) -> usize; }
This is how callers of Steer tell it which Service a Req corresponds to.
Steer
Service
Req
Return an index into the iterator of Service passed to Steer::new.
Steer::new