pub trait InputScheme: Scheme + EventScheme<Event = InputEvent> {
    fn capability(&self, cap_type: CapabilityType) -> InputCapability;
}

Required Methods

Returns the capability bitmap of the specific kind of event.

Implementors