pub trait ReplyRequest: Request {
    type Reply: Into<Reply> + TryParse;
}
Expand description

A X11 request that has a reply without FDs

Required Associated Types

The kind of reply that this request generates.

Implementors