Struct appium_client::commands::keyboard::AndroidKeyMetaModifier
source · pub struct AndroidKeyMetaModifier(/* private fields */);
Implementations§
source§impl AndroidKeyMetaModifier
impl AndroidKeyMetaModifier
sourcepub const CAP_LOCKED: Self = _
pub const CAP_LOCKED: Self = _
SHIFT key locked in CAPS mode. Reserved for use by MetaKeyKeyListener for a published constant in its API.
sourcepub const ALT_LOCKED: Self = _
pub const ALT_LOCKED: Self = _
ALT key locked. Reserved for use by MetaKeyKeyListener for a published constant in its API.
sourcepub const SYM_LOCKED: Self = _
pub const SYM_LOCKED: Self = _
SYM key locked. Reserved for use by MetaKeyKeyListener for a published constant in its API.
sourcepub const SELECTING: Self = _
pub const SELECTING: Self = _
Text is in selection mode. Reserved for use by MetaKeyKeyListener for a private unpublished constant in its API that is currently being retained for legacy reasons.
sourcepub const ALT_ON: Self = _
pub const ALT_ON: Self = _
This mask is used to check whether one of the ALT meta keys is pressed.
See also AndroidKey::AltLeft and AndroidKey::AltRight
sourcepub const ALT_LEFT_ON: Self = _
pub const ALT_LEFT_ON: Self = _
This mask is used to check whether the left ALT meta key is pressed.
See also AndroidKey::AltLeft
sourcepub const ALT_RIGHT_ON: Self = _
pub const ALT_RIGHT_ON: Self = _
This mask is used to check whether the right the ALT meta key is pressed.
See also AndroidKey::AltRight
sourcepub const SHIFT_ON: Self = _
pub const SHIFT_ON: Self = _
This mask is used to check whether one of the SHIFT meta keys is pressed.
See also AndroidKey::ShiftLeft and AndroidKey::ShiftRight
sourcepub const SHIFT_LEFT_ON: Self = _
pub const SHIFT_LEFT_ON: Self = _
This mask is used to check whether the left SHIFT meta key is pressed.
See also AndroidKey::ShiftLeft
sourcepub const SHIFT_RIGHT_ON: Self = _
pub const SHIFT_RIGHT_ON: Self = _
This mask is used to check whether the right SHIFT meta key is pressed.
See also AndroidKey::ShiftRight
sourcepub const FUNCTION_ON: Self = _
pub const FUNCTION_ON: Self = _
This mask is used to check whether the FUNCTION meta key is pressed.
sourcepub const CTRL_ON: Self = _
pub const CTRL_ON: Self = _
This mask is used to check whether one of the CTRL meta keys is pressed.
See also AndroidKey::CtrlLeft and AndroidKey::CtrlRight
sourcepub const CTRL_LEFT_ON: Self = _
pub const CTRL_LEFT_ON: Self = _
This mask is used to check whether the left CTRL meta key is pressed.
See also AndroidKey::CtrlLeft
sourcepub const CTRL_RIGHT_ON: Self = _
pub const CTRL_RIGHT_ON: Self = _
This mask is used to check whether the right CTRL meta key is pressed.
See also AndroidKey::CtrlRight
sourcepub const META_ON: Self = _
pub const META_ON: Self = _
This mask is used to check whether one of the META meta keys is pressed.
See also AndroidKey::MetaLeft and AndroidKey::MetaRight.
sourcepub const META_LEFT_ON: Self = _
pub const META_LEFT_ON: Self = _
This mask is used to check whether the left META meta key is pressed.
See also AndroidKey::MetaLeft
sourcepub const META_RIGHT_ON: Self = _
pub const META_RIGHT_ON: Self = _
This mask is used to check whether the right META meta key is pressed.
See also AndroidKey::MetaRight
sourcepub const CAPS_LOCK_ON: Self = _
pub const CAPS_LOCK_ON: Self = _
This mask is used to check whether the CAPS LOCK meta key is on.
See also AndroidKey::CapsLock
sourcepub const NUM_LOCK_ON: Self = _
pub const NUM_LOCK_ON: Self = _
This mask is used to check whether the NUM LOCK meta key is on.
See also AndroidKey::NumLock
sourcepub const SCROLL_LOCK_ON: Self = _
pub const SCROLL_LOCK_ON: Self = _
This mask is used to check whether the SCROLL LOCK meta key is on.
See also AndroidKey::ScrollLock
source§impl AndroidKeyMetaModifier
impl AndroidKeyMetaModifier
sourcepub const fn bits(&self) -> u32
pub const fn bits(&self) -> u32
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
sourcepub const fn from_bits(bits: u32) -> Option<Self>
pub const fn from_bits(bits: u32) -> Option<Self>
Convert from a bits value.
This method will return None
if any unknown bits are set.
sourcepub const fn from_bits_truncate(bits: u32) -> Self
pub const fn from_bits_truncate(bits: u32) -> Self
Convert from a bits value, unsetting any unknown bits.
sourcepub const fn from_bits_retain(bits: u32) -> Self
pub const fn from_bits_retain(bits: u32) -> Self
Convert from a bits value exactly.
sourcepub fn from_name(name: &str) -> Option<Self>
pub fn from_name(name: &str) -> Option<Self>
Get a flags value with the bits of a flag with the given name set.
This method will return None
if name
is empty or doesn’t
correspond to any named flag.
sourcepub const fn intersects(&self, other: Self) -> bool
pub const fn intersects(&self, other: Self) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
sourcepub const fn contains(&self, other: Self) -> bool
pub const fn contains(&self, other: Self) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
sourcepub fn remove(&mut self, other: Self)
pub fn remove(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
remove
won’t truncate other
, but the !
operator will.
sourcepub fn toggle(&mut self, other: Self)
pub fn toggle(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub fn set(&mut self, other: Self, value: bool)
pub fn set(&mut self, other: Self, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
sourcepub const fn intersection(self, other: Self) -> Self
pub const fn intersection(self, other: Self) -> Self
The bitwise and (&
) of the bits in two flags values.
sourcepub const fn union(self, other: Self) -> Self
pub const fn union(self, other: Self) -> Self
The bitwise or (|
) of the bits in two flags values.
sourcepub const fn difference(self, other: Self) -> Self
pub const fn difference(self, other: Self) -> Self
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
sourcepub const fn symmetric_difference(self, other: Self) -> Self
pub const fn symmetric_difference(self, other: Self) -> Self
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub const fn complement(self) -> Self
pub const fn complement(self) -> Self
The bitwise negation (!
) of the bits in a flags value, truncating the result.
source§impl AndroidKeyMetaModifier
impl AndroidKeyMetaModifier
sourcepub const fn iter(&self) -> Iter<AndroidKeyMetaModifier>
pub const fn iter(&self) -> Iter<AndroidKeyMetaModifier>
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
sourcepub const fn iter_names(&self) -> IterNames<AndroidKeyMetaModifier>
pub const fn iter_names(&self) -> IterNames<AndroidKeyMetaModifier>
Yield a set of contained named flags values.
This method is like iter
, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
Trait Implementations§
source§impl Binary for AndroidKeyMetaModifier
impl Binary for AndroidKeyMetaModifier
source§impl BitAnd for AndroidKeyMetaModifier
impl BitAnd for AndroidKeyMetaModifier
source§impl BitAndAssign for AndroidKeyMetaModifier
impl BitAndAssign for AndroidKeyMetaModifier
source§fn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
The bitwise and (&
) of the bits in two flags values.
source§impl BitOr for AndroidKeyMetaModifier
impl BitOr for AndroidKeyMetaModifier
source§fn bitor(self, other: AndroidKeyMetaModifier) -> Self
fn bitor(self, other: AndroidKeyMetaModifier) -> Self
The bitwise or (|
) of the bits in two flags values.
§type Output = AndroidKeyMetaModifier
type Output = AndroidKeyMetaModifier
|
operator.source§impl BitOrAssign for AndroidKeyMetaModifier
impl BitOrAssign for AndroidKeyMetaModifier
source§fn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
The bitwise or (|
) of the bits in two flags values.
source§impl BitXor for AndroidKeyMetaModifier
impl BitXor for AndroidKeyMetaModifier
source§impl BitXorAssign for AndroidKeyMetaModifier
impl BitXorAssign for AndroidKeyMetaModifier
source§fn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
The bitwise exclusive-or (^
) of the bits in two flags values.
source§impl Clone for AndroidKeyMetaModifier
impl Clone for AndroidKeyMetaModifier
source§fn clone(&self) -> AndroidKeyMetaModifier
fn clone(&self) -> AndroidKeyMetaModifier
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AndroidKeyMetaModifier
impl Debug for AndroidKeyMetaModifier
source§impl Extend<AndroidKeyMetaModifier> for AndroidKeyMetaModifier
impl Extend<AndroidKeyMetaModifier> for AndroidKeyMetaModifier
source§fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = Self>>(&mut self, iterator: T)
The bitwise or (|
) of the bits in each flags value.
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl Flags for AndroidKeyMetaModifier
impl Flags for AndroidKeyMetaModifier
source§const FLAGS: &'static [Flag<AndroidKeyMetaModifier>] = _
const FLAGS: &'static [Flag<AndroidKeyMetaModifier>] = _
source§fn from_bits_retain(bits: u32) -> AndroidKeyMetaModifier
fn from_bits_retain(bits: u32) -> AndroidKeyMetaModifier
§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere Self: Sized,
§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere Self: Sized,
§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where Self: Sized,
|
) of the bits in two flags values.§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where Self: Sized,
&!
). Read more§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where Self: Sized,
^
) of the bits in two flags values.§fn set(&mut self, other: Self, value: bool)where
Self: Sized,
fn set(&mut self, other: Self, value: bool)where Self: Sized,
Flags::insert
] when value
is true
or [Flags::remove
] when value
is false
.§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read more§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.source§impl FromIterator<AndroidKeyMetaModifier> for AndroidKeyMetaModifier
impl FromIterator<AndroidKeyMetaModifier> for AndroidKeyMetaModifier
source§fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
fn from_iter<T: IntoIterator<Item = Self>>(iterator: T) -> Self
The bitwise or (|
) of the bits in each flags value.
source§impl Hash for AndroidKeyMetaModifier
impl Hash for AndroidKeyMetaModifier
source§impl LowerHex for AndroidKeyMetaModifier
impl LowerHex for AndroidKeyMetaModifier
source§impl Not for AndroidKeyMetaModifier
impl Not for AndroidKeyMetaModifier
source§impl Octal for AndroidKeyMetaModifier
impl Octal for AndroidKeyMetaModifier
source§impl PartialEq for AndroidKeyMetaModifier
impl PartialEq for AndroidKeyMetaModifier
source§fn eq(&self, other: &AndroidKeyMetaModifier) -> bool
fn eq(&self, other: &AndroidKeyMetaModifier) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PublicFlags for AndroidKeyMetaModifier
impl PublicFlags for AndroidKeyMetaModifier
source§impl Sub for AndroidKeyMetaModifier
impl Sub for AndroidKeyMetaModifier
source§fn sub(self, other: Self) -> Self
fn sub(self, other: Self) -> Self
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
§type Output = AndroidKeyMetaModifier
type Output = AndroidKeyMetaModifier
-
operator.source§impl SubAssign for AndroidKeyMetaModifier
impl SubAssign for AndroidKeyMetaModifier
source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.