pub trait Request { type Action: Action; type Response; type Error: ApiError; const ACTION: Self::Action; }
Basic request definition.