Derive Clone, Copy, PartialEq for EventStatus and WindowScalePolicy
This commit is contained in:
parent
72b6a4a2d1
commit
5ad2d2bfb2
|
@ -92,7 +92,7 @@ pub enum Event {
|
||||||
/// when there is no clear meaning of passing back the event to the platform,
|
/// when there is no clear meaning of passing back the event to the platform,
|
||||||
/// or it isn't obviously useful. Currently, only [`Event::Keyboard`] variants
|
/// or it isn't obviously useful. Currently, only [`Event::Keyboard`] variants
|
||||||
/// are supported.
|
/// are supported.
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
||||||
pub enum EventStatus {
|
pub enum EventStatus {
|
||||||
/// Event was handled by your window and will not be sent back to the
|
/// Event was handled by your window and will not be sent back to the
|
||||||
/// platform for further processing.
|
/// platform for further processing.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
use crate::Size;
|
use crate::Size;
|
||||||
|
|
||||||
/// The dpi scaling policy of the window
|
/// The dpi scaling policy of the window
|
||||||
#[derive(Debug)]
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
||||||
pub enum WindowScalePolicy {
|
pub enum WindowScalePolicy {
|
||||||
/// Use the system's dpi scale factor
|
/// Use the system's dpi scale factor
|
||||||
SystemScaleFactor,
|
SystemScaleFactor,
|
||||||
|
|
Loading…
Reference in a new issue