egui-table-kit 0.1.2

An extension for `egui` that brings batteries-included, filtering, highlighting, tree structures, and an action dispatch to your tables.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug, thiserror::Error)]
pub enum TableError {
    #[error("Corrupted table state")]
    CorruptedState,
    #[error("IO error: {0}")]
    Io(#[from] std::io::Error),
    #[error("Serialization/Decompression error: {0}")]
    Deserialization(String),
    #[error("Operation error: {0}")]
    Operation(String),
    #[error("Generic error: {0}")]
    Generic(String),
}