pub struct WindowKeyboardModifiersChange {
pub modifiers: u32,
}
Expand description
WindowKeyboardModifiersChange: Sent when the window’s keyboard modifiers change.
Fields§
§modifiers: u32
Implementations§
Trait Implementations§
source§impl Clone for WindowKeyboardModifiersChange
impl Clone for WindowKeyboardModifiersChange
source§fn clone(&self) -> WindowKeyboardModifiersChange
fn clone(&self) -> WindowKeyboardModifiersChange
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 RuntimeMessage for WindowKeyboardModifiersChange
impl RuntimeMessage for WindowKeyboardModifiersChange
source§fn subscribe<R: CallbackReturn>(
callback: impl FnMut(Self) -> R + 'static
) -> Listener
fn subscribe<R: CallbackReturn>( callback: impl FnMut(Self) -> R + 'static ) -> Listener
Subscribes to this Message. Wrapper around self::subscribe.
impl Message for WindowKeyboardModifiersChange
Auto Trait Implementations§
impl RefUnwindSafe for WindowKeyboardModifiersChange
impl Send for WindowKeyboardModifiersChange
impl Sync for WindowKeyboardModifiersChange
impl Unpin for WindowKeyboardModifiersChange
impl UnwindSafe for WindowKeyboardModifiersChange
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