pub trait BaseEvent: Raw<xcb_generic_event_t> {
    const EXTENSION: Option<Extension>;
    const NUMBER: u32;
}
Expand description

Trait for base events (aka. non GE_GENERIC events)

Associated Constants

The extension associated to this event, or None for the main protocol

The number associated to this event

Implementors