pub trait Outbound: Send + Sync + Debug { // Required method fn fetch(&self, request: &Request) -> Result<Reply, Failure>; }
Somewhere for an outbound request to go.