Trait ToKeysym

Source
pub trait ToKeysym {
    // Required method
    fn to_keysym(&self) -> Keysym;
}
Expand description

A trait that designates anything that can be converted into a Keysym.

Required Methods§

Source

fn to_keysym(&self) -> Keysym

Converts this into a Keysym.

Implementations on Foreign Types§

Source§

impl ToKeysym for &str

Source§

impl ToKeysym for char

Source§

impl ToKeysym for u32

Source§

impl ToKeysym for String

Implementors§