Function x11rb::protocol::xkb::set_map

source ·
pub fn set_map<'c, 'input, Conn>(
    conn: &'c Conn,
    device_spec: DeviceSpec,
    flags: SetMapFlags,
    min_key_code: Keycode,
    max_key_code: Keycode,
    first_type: u8,
    n_types: u8,
    first_key_sym: Keycode,
    n_key_syms: u8,
    total_syms: u16,
    first_key_action: Keycode,
    n_key_actions: u8,
    total_actions: u16,
    first_key_behavior: Keycode,
    n_key_behaviors: u8,
    total_key_behaviors: u8,
    first_key_explicit: Keycode,
    n_key_explicit: u8,
    total_key_explicit: u8,
    first_mod_map_key: Keycode,
    n_mod_map_keys: u8,
    total_mod_map_keys: u8,
    first_v_mod_map_key: Keycode,
    n_v_mod_map_keys: u8,
    total_v_mod_map_keys: u8,
    virtual_mods: VMod,
    values: &'input SetMapAux
) -> Result<VoidCookie<'c, Conn>, ConnectionError>
where Conn: RequestConnection + ?Sized,