mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-09-16 03:36:58 +02:00
31 lines
574 B
Rust
31 lines
574 B
Rust
use crate::clients::sysinfo::{Function, Prefix, TokenType};
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct Token {
|
|
pub token: TokenType,
|
|
pub function: Function,
|
|
pub prefix: Prefix,
|
|
pub formatting: Formatting,
|
|
}
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub enum Part {
|
|
Static(String),
|
|
Token(Token),
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
pub struct Formatting {
|
|
pub width: usize,
|
|
pub fill: char,
|
|
pub align: Alignment,
|
|
pub precision: usize,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq)]
|
|
pub enum Alignment {
|
|
#[default]
|
|
Left,
|
|
Center,
|
|
Right,
|
|
}
|