Trait Request

Source
pub trait Request: Send {
    type Response: Send;
}
Expand description

Trait for representing a Request.

Requests are usually Commands or Queries, and their sole requirement is to have an associated Response type.

Required Associated Types§

Source

type Response: Send

Request response type.

Implementors§