Skip to main content

KeyAccelerator

Struct KeyAccelerator 

Source
pub struct KeyAccelerator { /* private fields */ }
Expand description

A keyboard shortcut based on logical Key values.

Unlike Accelerator which uses physical Code keys, KeyAccelerator uses logical Key values which can represent any character including Unicode characters like +, , {, etc.

§Examples

They can be created directly

let accel = KeyAccelerator::new(Some(Modifiers::CONTROL), Key::Character("+".into()));

or converted from an existing Accelerator

let old_accel = Accelerator::new(Some(Modifiers::CONTROL), Code::KeyC);
let new_accel: KeyAccelerator = old_accel.into();

or parsed from a string, which supports literal character keys

let accel: KeyAccelerator = "Ctrl++".parse().unwrap();
let accel2: KeyAccelerator = "Ctrl+€".parse().unwrap();

Implementations§

Source§

impl KeyAccelerator

Source

pub fn new(mods: Option<Modifiers>, key: Key) -> KeyAccelerator

Creates a new key accelerator to define keyboard shortcuts throughout your application. Only Modifiers::ALT, Modifiers::SHIFT, Modifiers::CONTROL, and Modifiers::SUPER

Source

pub fn id(&self) -> u32

Returns the id associated with this accelerator which is a hash of the string representation of modifiers and key within this accelerator.

Source

pub fn modifiers(&self) -> Modifiers

Returns the modifiers for this accelerator.

Source

pub fn key(&self) -> &Key

Returns the key for this accelerator.

Source

pub fn matches( &self, modifiers: impl Borrow<Modifiers>, key: impl Borrow<Key>, ) -> bool

Returns true if this Key and Modifiers matches this KeyAccelerator.

Trait Implementations§

Source§

impl Clone for KeyAccelerator

Source§

fn clone(&self) -> KeyAccelerator

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for KeyAccelerator

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Eq for KeyAccelerator

Source§

impl From<Accelerator> for KeyAccelerator

Source§

fn from(accel: Accelerator) -> KeyAccelerator

Converts to this type from the input type.
Source§

impl FromStr for KeyAccelerator

Source§

type Err = AcceleratorParseError

The associated error which can be returned from parsing.
Source§

fn from_str( accelerator_string: &str, ) -> Result<KeyAccelerator, <KeyAccelerator as FromStr>::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for KeyAccelerator

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for KeyAccelerator

Source§

fn eq(&self, other: &KeyAccelerator) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for KeyAccelerator

Source§

impl TryFrom<&str> for KeyAccelerator

Source§

type Error = AcceleratorParseError

The type returned in the event of a conversion error.
Source§

fn try_from( value: &str, ) -> Result<KeyAccelerator, <KeyAccelerator as TryFrom<&str>>::Error>

Performs the conversion.
Source§

impl TryFrom<String> for KeyAccelerator

Source§

type Error = AcceleratorParseError

The type returned in the event of a conversion error.
Source§

fn try_from( value: String, ) -> Result<KeyAccelerator, <KeyAccelerator as TryFrom<String>>::Error>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.