systemd-journal-sdk-engine 0.6.3

Async query engine components for the pure Rust systemd journal SDK
Documentation
1
2
3
4
5
6
7
8
9
10
//! Log entry formatting and display.
//!
//! This module provides generic types for converting log entries
//! into formatted tables.

pub mod query;
pub mod table;

pub use query::{LogEntryData, LogQuery};
pub use table::{CellValue, ColumnInfo, Table, entry_data_to_table};