Remove PartialEq implementation for window::Position

This commit is contained in:
Héctor Ramón Jiménez 2025-06-24 14:06:19 +02:00
parent 89f480bdae
commit bde4572bc5
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -1,7 +1,7 @@
use crate::{Point, Size};
/// The position of a window in a given screen.
#[derive(Debug, Clone, Copy, PartialEq)]
#[derive(Debug, Clone, Copy)]
pub enum Position {
/// The platform-specific default position for a new window.
Default,