1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (C) 2022 Purism SPC
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

/*! Contains actors with custom event loops, not based off of the event_loop module. */
 
pub mod debug;
#[cfg(feature = "zbus_v1_5")]
pub mod screensaver;

/// The uninhabited type. Cannot be created or returned; means "will never return" as return type. Useful for infinite loops.
enum Void {}