pub trait RequestWithReply: Request {
    type Reply: Reply;
    type Cookie: CookieWithReplyChecked<Reply = Self::Reply>;
    type CookieUnchecked: CookieWithReplyUnchecked<Reply = Self::Reply>;
}
Expand description

Trait for requests that return a reply.

Associated Types

Reply associated with the request

Default cookie type for the request, as returned by Connection::send_request.

Unchecked cookie type for the request, as returned by Connection::send_request_unchecked.

Implementors