Enum tauri_runtime::DeviceEventFilter
source · pub enum DeviceEventFilter {
Always,
Unfocused,
Never,
}
Variants§
Always
Always filter out device events.
Unfocused
Filter out device events while the window is not focused.
Never
Report all device events regardless of window focus.
Trait Implementations§
source§impl Clone for DeviceEventFilter
impl Clone for DeviceEventFilter
source§fn clone(&self) -> DeviceEventFilter
fn clone(&self) -> DeviceEventFilter
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 DeviceEventFilter
impl Debug for DeviceEventFilter
source§impl Default for DeviceEventFilter
impl Default for DeviceEventFilter
source§impl<'de> Deserialize<'de> for DeviceEventFilter
impl<'de> Deserialize<'de> for DeviceEventFilter
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<DeviceEventFilter> for DeviceEventFilter
impl PartialEq<DeviceEventFilter> for DeviceEventFilter
source§fn eq(&self, other: &DeviceEventFilter) -> bool
fn eq(&self, other: &DeviceEventFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.