pub struct LiveTextEventInfo {
pub type_name: String,
pub location_in_window: Point,
pub modifier_flags: u64,
pub key_code: u16,
pub characters: Option<String>,
pub characters_ignoring_modifiers: Option<String>,
pub click_count: i64,
}Fields§
§type_name: String§location_in_window: Point§modifier_flags: u64§key_code: u16§characters: Option<String>§characters_ignoring_modifiers: Option<String>§click_count: i64Trait Implementations§
Source§impl Clone for LiveTextEventInfo
impl Clone for LiveTextEventInfo
Source§fn clone(&self) -> LiveTextEventInfo
fn clone(&self) -> LiveTextEventInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LiveTextEventInfo
impl Debug for LiveTextEventInfo
Source§impl<'de> Deserialize<'de> for LiveTextEventInfo
impl<'de> Deserialize<'de> for LiveTextEventInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LiveTextEventInfo
impl PartialEq for LiveTextEventInfo
Source§fn eq(&self, other: &LiveTextEventInfo) -> bool
fn eq(&self, other: &LiveTextEventInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LiveTextEventInfo
impl Serialize for LiveTextEventInfo
impl StructuralPartialEq for LiveTextEventInfo
Auto Trait Implementations§
impl Freeze for LiveTextEventInfo
impl RefUnwindSafe for LiveTextEventInfo
impl Send for LiveTextEventInfo
impl Sync for LiveTextEventInfo
impl Unpin for LiveTextEventInfo
impl UnsafeUnpin for LiveTextEventInfo
impl UnwindSafe for LiveTextEventInfo
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