rs_blocks/blocks/
mod.rs

1// Copyright ⓒ 2019-2021 Lewis Belcher
2// Licensed under the MIT license (see LICENSE or <http://opensource.org/licenses/MIT>).
3// All files in the project carrying such notice may not be copied, modified, or
4// distributed except according to those terms
5
6//! Collection of all blocks for use in status bar. See each module for example
7//! configurations and options.
8
9// derive proc_macro from exernal crate:
10pub use rs_blocks_derive::Configure;
11
12pub mod battery;
13pub mod block;
14pub mod brightness;
15pub mod cpu;
16pub mod memory;
17pub mod network;
18pub mod time;
19pub mod volume;
20
21pub use block::{Block, Configure, Message, Sender, ValidatedPath};