pub trait Request: RawRequest {
    type Cookie: Cookie;

    const IS_VOID: bool;
}
Expand description

Trait implemented by requests types.

See crate::x::CreateWindow as an example.

Associated Types

The default cookie associated to this request.

Associated Constants

false if the request returns a reply, true otherwise.

Implementors