#[repr(C)]pub struct _cef_mouse_event_t {
pub x: c_int,
pub y: c_int,
pub modifiers: u32,
}Expand description
Structure representing mouse event information.
Fields§
§x: c_intX coordinate relative to the left side of the view.
y: c_intY coordinate relative to the top side of the view.
modifiers: u32Bit flags describing any pressed modifier keys. See cef_event_flags_t for values.
Trait Implementations§
Source§impl Clone for _cef_mouse_event_t
impl Clone for _cef_mouse_event_t
Source§fn clone(&self) -> _cef_mouse_event_t
fn clone(&self) -> _cef_mouse_event_t
Returns a duplicate 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 _cef_mouse_event_t
impl Debug for _cef_mouse_event_t
impl Copy for _cef_mouse_event_t
Auto Trait Implementations§
impl Freeze for _cef_mouse_event_t
impl RefUnwindSafe for _cef_mouse_event_t
impl Send for _cef_mouse_event_t
impl Sync for _cef_mouse_event_t
impl Unpin for _cef_mouse_event_t
impl UnwindSafe for _cef_mouse_event_t
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