#[repr(C)]pub struct obs_key_event {
pub modifiers: u32,
pub text: *mut c_char,
pub native_modifiers: u32,
pub native_scancode: u32,
pub native_vkey: u32,
}
Fields§
§modifiers: u32
§text: *mut c_char
§native_modifiers: u32
§native_scancode: u32
§native_vkey: u32
Trait Implementations§
Source§impl Clone for obs_key_event
impl Clone for obs_key_event
Source§fn clone(&self) -> obs_key_event
fn clone(&self) -> obs_key_event
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 moreSource§impl Debug for obs_key_event
impl Debug for obs_key_event
Source§impl Ord for obs_key_event
impl Ord for obs_key_event
Source§fn cmp(&self, other: &obs_key_event) -> Ordering
fn cmp(&self, other: &obs_key_event) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for obs_key_event
impl PartialEq for obs_key_event
Source§impl PartialOrd for obs_key_event
impl PartialOrd for obs_key_event
impl Copy for obs_key_event
impl Eq for obs_key_event
impl StructuralPartialEq for obs_key_event
Auto Trait Implementations§
impl Freeze for obs_key_event
impl RefUnwindSafe for obs_key_event
impl !Send for obs_key_event
impl !Sync for obs_key_event
impl Unpin for obs_key_event
impl UnwindSafe for obs_key_event
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