pub trait BaseError: Raw<xcb_generic_error_t> {
const EXTENSION: Option<Extension>;
const NUMBER: u32;
}
Expand description
A trait to designate base protocol errors.
The base errors follow the usual resolution idiom of error_code
offset.
This should be completely transparent to the user, as ProtocolError is resolving all types of errors together.
Required Associated Constants§
Object Safety§
This trait is not object safe.