abletk/src/event/application.rs

14 lines
423 B
Rust
Raw Normal View History

2022-04-16 17:25:56 +00:00
/*
* Copyright (C) 2022 Umut İnan Erdoğan <umutinanerdogan@pm.me>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
2022-04-16 17:18:23 +00:00
#[non_exhaustive]
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub enum Event {
2022-05-22 09:52:26 +00:00
AllWindowsDestroyed,
2022-04-16 17:18:23 +00:00
}