Enum x11rb_protocol::protocol::xinput::InputStateData
source · pub enum InputStateData {
Key(InputStateDataKey),
Button(InputStateDataButton),
Valuator(InputStateDataValuator),
InvalidValue(u8),
}
Variants§
Key(InputStateDataKey)
Button(InputStateDataButton)
Valuator(InputStateDataValuator)
InvalidValue(u8)
This variant is returned when the server sends a discriminant value that does not match any of the defined by the protocol.
Usually, this should be considered a parsing error, but there are some cases where the server violates the protocol.
Trying to use serialize
or serialize_into
with this variant
will raise a panic.
Implementations§
source§impl InputStateData
impl InputStateData
pub fn as_key(&self) -> Option<&InputStateDataKey>
pub fn as_valuator(&self) -> Option<&InputStateDataValuator>
Trait Implementations§
source§impl Clone for InputStateData
impl Clone for InputStateData
source§fn clone(&self) -> InputStateData
fn clone(&self) -> InputStateData
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for InputStateData
impl Send for InputStateData
impl Sync for InputStateData
impl Unpin for InputStateData
impl UnwindSafe for InputStateData
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more