pub trait Request: Send { type Response: Send; }
Trait for representing a Request.
Requests are usually Commands or Queries, and their sole requirement is to have an associated Response type.
Response
Request response type.