[][src]Struct keyboard_shortcut_parser::KeySpecial

pub struct KeySpecial { /* fields omitted */ }

Bitflags holding all special keys.

Implementations

impl WinKeySpecial[src]

pub const BACKSPACE: WinKeySpecial[src]

pub const TAB: WinKeySpecial[src]

pub const CLEAR: WinKeySpecial[src]

pub const ENTER: WinKeySpecial[src]

pub const PAUSE: WinKeySpecial[src]

pub const CAPSLOCK: WinKeySpecial[src]

pub const ESCAPE: WinKeySpecial[src]

pub const SPACEBAR: WinKeySpecial[src]

pub const PAGE_UP: WinKeySpecial[src]

pub const PAGE_DOWN: WinKeySpecial[src]

pub const END: WinKeySpecial[src]

pub const HOME: WinKeySpecial[src]

pub const LEFT_ARROW: WinKeySpecial[src]

pub const UP_ARROW: WinKeySpecial[src]

pub const RIGHT_ARROW: WinKeySpecial[src]

pub const DOWN_ARROW: WinKeySpecial[src]

pub const SELECT: WinKeySpecial[src]

pub const PRINT: WinKeySpecial[src]

pub const PRINT_SCREEN: WinKeySpecial[src]

pub const INSERT: WinKeySpecial[src]

pub const DELETE: WinKeySpecial[src]

pub const F1: WinKeySpecial[src]

pub const F2: WinKeySpecial[src]

pub const F3: WinKeySpecial[src]

pub const F4: WinKeySpecial[src]

pub const F5: WinKeySpecial[src]

pub const F6: WinKeySpecial[src]

pub const F7: WinKeySpecial[src]

pub const F8: WinKeySpecial[src]

pub const F9: WinKeySpecial[src]

pub const F10: WinKeySpecial[src]

pub const F11: WinKeySpecial[src]

pub const F12: WinKeySpecial[src]

pub const NUMLOCK: WinKeySpecial[src]

pub const SCROLLLOCK: WinKeySpecial[src]

pub const fn empty() -> WinKeySpecial[src]

Returns an empty set of flags

pub const fn all() -> WinKeySpecial[src]

Returns the set containing all flags.

pub const fn bits(&self) -> c_int[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: c_int) -> Option<WinKeySpecial>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: c_int) -> WinKeySpecial[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: c_int) -> WinKeySpecial[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: WinKeySpecial) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: WinKeySpecial) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: WinKeySpecial)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: WinKeySpecial)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: WinKeySpecial)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: WinKeySpecial, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for WinKeySpecial[src]

impl BitAnd<WinKeySpecial> for WinKeySpecial[src]

type Output = WinKeySpecial

The resulting type after applying the & operator.

fn bitand(self, other: WinKeySpecial) -> WinKeySpecial[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<WinKeySpecial> for WinKeySpecial[src]

fn bitand_assign(&mut self, other: WinKeySpecial)[src]

Disables all flags disabled in the set.

impl BitOr<WinKeySpecial> for WinKeySpecial[src]

type Output = WinKeySpecial

The resulting type after applying the | operator.

fn bitor(self, other: WinKeySpecial) -> WinKeySpecial[src]

Returns the union of the two sets of flags.

impl BitOrAssign<WinKeySpecial> for WinKeySpecial[src]

fn bitor_assign(&mut self, other: WinKeySpecial)[src]

Adds the set of flags.

impl BitXor<WinKeySpecial> for WinKeySpecial[src]

type Output = WinKeySpecial

The resulting type after applying the ^ operator.

fn bitxor(self, other: WinKeySpecial) -> WinKeySpecial[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<WinKeySpecial> for WinKeySpecial[src]

fn bitxor_assign(&mut self, other: WinKeySpecial)[src]

Toggles the set of flags.

impl Clone for WinKeySpecial[src]

impl Copy for WinKeySpecial[src]

impl Debug for WinKeySpecial[src]

impl Eq for WinKeySpecial[src]

impl Extend<WinKeySpecial> for WinKeySpecial[src]

impl<'_> From<WinKeySpecial> for &'_ str[src]

impl FromIterator<WinKeySpecial> for WinKeySpecial[src]

impl FromStr for KeySpecial[src]

type Err = ()

The associated error which can be returned from parsing.

impl Hash for WinKeySpecial[src]

impl LowerHex for WinKeySpecial[src]

impl Not for WinKeySpecial[src]

type Output = WinKeySpecial

The resulting type after applying the ! operator.

fn not(self) -> WinKeySpecial[src]

Returns the complement of this set of flags.

impl Octal for WinKeySpecial[src]

impl Ord for WinKeySpecial[src]

impl PartialEq<WinKeySpecial> for WinKeySpecial[src]

impl PartialOrd<WinKeySpecial> for WinKeySpecial[src]

impl StructuralEq for WinKeySpecial[src]

impl StructuralPartialEq for WinKeySpecial[src]

impl Sub<WinKeySpecial> for WinKeySpecial[src]

type Output = WinKeySpecial

The resulting type after applying the - operator.

fn sub(self, other: WinKeySpecial) -> WinKeySpecial[src]

Returns the set difference of the two sets of flags.

impl SubAssign<WinKeySpecial> for WinKeySpecial[src]

fn sub_assign(&mut self, other: WinKeySpecial)[src]

Disables all flags enabled in the set.

impl<'_> TryFrom<&'_ str> for KeySpecial[src]

type Error = ()

The type returned in the event of a conversion error.

impl UpperHex for WinKeySpecial[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.