#[repr(transparent)]
pub struct NcKeyMod(pub u32);
Expand description

A bitmask of NcKey modifiers.

§Default

*NcKeyMod::None

§Flags

Tuple Fields§

§0: u32

Implementations§

source§

impl NcKeyMod

§Flags

source

pub const Shift: Self = _

source

pub const Alt: Self = _

source

pub const Ctrl: Self = _

source

pub const Super: Self = _

source

pub const Hyper: Self = _

source

pub const Meta: Self = _

source

pub const CapsLock: Self = _

source

pub const NumLock: Self = _

source

pub const None: Self = _

None of the modifiers (all bits set to 0).

source

pub const Mask: Self = _

The modifier mask (all bits set to 1).

source§

impl NcKeyMod

§Aliases

source

pub const Control: Self = Self::Ctrl

source§

impl NcKeyMod

§Methods

source

pub fn none_p(&self) -> bool

Returns true if no modifiers are present.

source

pub fn shift_p(&self) -> bool

Returns true if the Shift modifier is present.

source

pub fn alt_p(&self) -> bool

Returns true if the Alt modifier is present.

source

pub fn ctrl_p(&self) -> bool

Returns true if the Ctrl modifier is present.

source

pub fn super_p(&self) -> bool

Returns true if the Super modifier is present.

source

pub fn hyper_p(&self) -> bool

Returns true if the Hyper modifier is present.

source

pub fn meta_p(&self) -> bool

Returns true if the Meta modifier is present.

source

pub fn capslock_p(&self) -> bool

Returns true if the CapsLock modifier is present.

source

pub fn numlock_p(&self) -> bool

Returns true if the NumLock modifier is present.

Trait Implementations§

source§

impl<'a, 'b> BitAnd<&'b NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b mut NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b mut NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b mut NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b mut NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b mut NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b u32) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b u32) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<&'b u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &'b u32) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u32) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u32) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd<u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: u32) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAnd for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: NcKeyMod) -> Self::Output

Performs the & operation. Read more
source§

impl<'a, 'b> BitAndAssign<&'b NcKeyMod> for &'a mut NcKeyMod

source§

fn bitand_assign(&mut self, rhs: &'b NcKeyMod)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<&'b NcKeyMod> for NcKeyMod

source§

fn bitand_assign(&mut self, rhs: &'b NcKeyMod)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<&'b NcKeyMod> for u32

source§

fn bitand_assign(&mut self, rhs: &'b NcKeyMod)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<&'b mut NcKeyMod> for &'a mut NcKeyMod

source§

fn bitand_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<&'b mut NcKeyMod> for NcKeyMod

source§

fn bitand_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<&'b mut NcKeyMod> for u32

source§

fn bitand_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<&'b u32> for &'a mut NcKeyMod

source§

fn bitand_assign(&mut self, rhs: &'b u32)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<&'b u32> for NcKeyMod

source§

fn bitand_assign(&mut self, rhs: &'b u32)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<NcKeyMod> for &'a mut NcKeyMod

source§

fn bitand_assign(&mut self, rhs: NcKeyMod)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<NcKeyMod> for u32

source§

fn bitand_assign(&mut self, rhs: NcKeyMod)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<u32> for &'a mut NcKeyMod

source§

fn bitand_assign(&mut self, rhs: u32)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign<u32> for NcKeyMod

source§

fn bitand_assign(&mut self, rhs: u32)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitAndAssign for NcKeyMod

source§

fn bitand_assign(&mut self, rhs: NcKeyMod)

Performs the &= operation. Read more
source§

impl<'a, 'b> BitOr<&'b NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b mut NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b mut NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b mut NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b mut NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b mut NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b u32) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b u32) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<&'b u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &'b u32) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u32) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u32) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr<u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: u32) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOr for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: NcKeyMod) -> Self::Output

Performs the | operation. Read more
source§

impl<'a, 'b> BitOrAssign<&'b NcKeyMod> for &'a mut NcKeyMod

source§

fn bitor_assign(&mut self, rhs: &'b NcKeyMod)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<&'b NcKeyMod> for NcKeyMod

source§

fn bitor_assign(&mut self, rhs: &'b NcKeyMod)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<&'b NcKeyMod> for u32

source§

fn bitor_assign(&mut self, rhs: &'b NcKeyMod)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<&'b mut NcKeyMod> for &'a mut NcKeyMod

source§

fn bitor_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<&'b mut NcKeyMod> for NcKeyMod

source§

fn bitor_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<&'b mut NcKeyMod> for u32

source§

fn bitor_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<&'b u32> for &'a mut NcKeyMod

source§

fn bitor_assign(&mut self, rhs: &'b u32)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<&'b u32> for NcKeyMod

source§

fn bitor_assign(&mut self, rhs: &'b u32)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<NcKeyMod> for &'a mut NcKeyMod

source§

fn bitor_assign(&mut self, rhs: NcKeyMod)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<NcKeyMod> for u32

source§

fn bitor_assign(&mut self, rhs: NcKeyMod)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<u32> for &'a mut NcKeyMod

source§

fn bitor_assign(&mut self, rhs: u32)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign<u32> for NcKeyMod

source§

fn bitor_assign(&mut self, rhs: u32)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitOrAssign for NcKeyMod

source§

fn bitor_assign(&mut self, rhs: NcKeyMod)

Performs the |= operation. Read more
source§

impl<'a, 'b> BitXor<&'b NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b mut NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b mut NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b mut NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b mut NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b mut NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b u32) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b u32) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<&'b u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &'b u32) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: u32) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: u32) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor<u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: u32) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXor for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: NcKeyMod) -> Self::Output

Performs the ^ operation. Read more
source§

impl<'a, 'b> BitXorAssign<&'b NcKeyMod> for &'a mut NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: &'b NcKeyMod)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<&'b NcKeyMod> for NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: &'b NcKeyMod)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<&'b NcKeyMod> for u32

source§

fn bitxor_assign(&mut self, rhs: &'b NcKeyMod)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<&'b mut NcKeyMod> for &'a mut NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<&'b mut NcKeyMod> for NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<&'b mut NcKeyMod> for u32

source§

fn bitxor_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<&'b u32> for &'a mut NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: &'b u32)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<&'b u32> for NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: &'b u32)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<NcKeyMod> for &'a mut NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: NcKeyMod)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<NcKeyMod> for u32

source§

fn bitxor_assign(&mut self, rhs: NcKeyMod)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<u32> for &'a mut NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: u32)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign<u32> for NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: u32)

Performs the ^= operation. Read more
source§

impl<'a, 'b> BitXorAssign for NcKeyMod

source§

fn bitxor_assign(&mut self, rhs: NcKeyMod)

Performs the ^= operation. Read more
source§

impl Clone for NcKeyMod

source§

fn clone(&self) -> NcKeyMod

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for NcKeyMod

source§

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

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

impl Default for NcKeyMod

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for NcKeyMod

source§

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

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

impl<'a> From<&'a NcKeyMod> for &'a u32

source§

fn from(s: &'a NcKeyMod) -> Self

Converts to this type from the input type.
source§

impl From<&NcKeyMod> for *const u32

source§

fn from(s: &NcKeyMod) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a mut NcKeyMod> for &'a mut u32

source§

fn from(s: &'a mut NcKeyMod) -> Self

Converts to this type from the input type.
source§

impl From<&mut NcKeyMod> for *mut u32

source§

fn from(s: &mut NcKeyMod) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a mut u32> for NcKeyMod

source§

fn from(p: &'a mut u32) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a u32> for NcKeyMod

source§

fn from(p: &'a u32) -> Self

Converts to this type from the input type.
source§

impl From<NcKeyMod> for u32

source§

fn from(s: NcKeyMod) -> Self

Converts to this type from the input type.
source§

impl From<u32> for NcKeyMod

source§

fn from(p: u32) -> Self

Converts to this type from the input type.
source§

impl<'a> Not for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl<'a> Not for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl<'a> Not for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl PartialEq for NcKeyMod

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, 'b> Shl<&'b NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b mut NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b mut NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b mut NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b mut NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b mut NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b u32) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b u32) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<&'b u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: &'b u32) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: u32) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: u32) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl<u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: u32) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> Shl for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the << operator.
source§

fn shl(self, rhs: NcKeyMod) -> Self::Output

Performs the << operation. Read more
source§

impl<'a, 'b> ShlAssign<&'b NcKeyMod> for &'a mut NcKeyMod

source§

fn shl_assign(&mut self, rhs: &'b NcKeyMod)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<&'b NcKeyMod> for NcKeyMod

source§

fn shl_assign(&mut self, rhs: &'b NcKeyMod)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<&'b NcKeyMod> for u32

source§

fn shl_assign(&mut self, rhs: &'b NcKeyMod)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<&'b mut NcKeyMod> for &'a mut NcKeyMod

source§

fn shl_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<&'b mut NcKeyMod> for NcKeyMod

source§

fn shl_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<&'b mut NcKeyMod> for u32

source§

fn shl_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<&'b u32> for &'a mut NcKeyMod

source§

fn shl_assign(&mut self, rhs: &'b u32)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<&'b u32> for NcKeyMod

source§

fn shl_assign(&mut self, rhs: &'b u32)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<NcKeyMod> for &'a mut NcKeyMod

source§

fn shl_assign(&mut self, rhs: NcKeyMod)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<NcKeyMod> for u32

source§

fn shl_assign(&mut self, rhs: NcKeyMod)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<u32> for &'a mut NcKeyMod

source§

fn shl_assign(&mut self, rhs: u32)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign<u32> for NcKeyMod

source§

fn shl_assign(&mut self, rhs: u32)

Performs the <<= operation. Read more
source§

impl<'a, 'b> ShlAssign for NcKeyMod

source§

fn shl_assign(&mut self, rhs: NcKeyMod)

Performs the <<= operation. Read more
source§

impl<'a, 'b> Shr<&'b NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b mut NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b mut NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b mut NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b mut NcKeyMod> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b mut NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b mut NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b u32) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b u32) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<&'b u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: &'b u32) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<NcKeyMod> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<NcKeyMod> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<NcKeyMod> for &'a u32

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<NcKeyMod> for u32

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<u32> for &'a NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: u32) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<u32> for &'a mut NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: u32) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr<u32> for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: u32) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> Shr for NcKeyMod

§

type Output = NcKeyMod

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: NcKeyMod) -> Self::Output

Performs the >> operation. Read more
source§

impl<'a, 'b> ShrAssign<&'b NcKeyMod> for &'a mut NcKeyMod

source§

fn shr_assign(&mut self, rhs: &'b NcKeyMod)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<&'b NcKeyMod> for NcKeyMod

source§

fn shr_assign(&mut self, rhs: &'b NcKeyMod)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<&'b NcKeyMod> for u32

source§

fn shr_assign(&mut self, rhs: &'b NcKeyMod)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<&'b mut NcKeyMod> for &'a mut NcKeyMod

source§

fn shr_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<&'b mut NcKeyMod> for NcKeyMod

source§

fn shr_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<&'b mut NcKeyMod> for u32

source§

fn shr_assign(&mut self, rhs: &'b mut NcKeyMod)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<&'b u32> for &'a mut NcKeyMod

source§

fn shr_assign(&mut self, rhs: &'b u32)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<&'b u32> for NcKeyMod

source§

fn shr_assign(&mut self, rhs: &'b u32)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<NcKeyMod> for &'a mut NcKeyMod

source§

fn shr_assign(&mut self, rhs: NcKeyMod)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<NcKeyMod> for u32

source§

fn shr_assign(&mut self, rhs: NcKeyMod)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<u32> for &'a mut NcKeyMod

source§

fn shr_assign(&mut self, rhs: u32)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign<u32> for NcKeyMod

source§

fn shr_assign(&mut self, rhs: u32)

Performs the >>= operation. Read more
source§

impl<'a, 'b> ShrAssign for NcKeyMod

source§

fn shr_assign(&mut self, rhs: NcKeyMod)

Performs the >>= operation. Read more
source§

impl Copy for NcKeyMod

source§

impl Eq for NcKeyMod

source§

impl StructuralPartialEq for NcKeyMod

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> 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,

§

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> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

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>,

§

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.