innodb-utils 1.1.0

InnoDB file analysis toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod cli;
pub mod innodb;
pub mod util;

use thiserror::Error;

#[derive(Error, Debug)]
pub enum IdbError {
    #[error("I/O error: {0}")]
    Io(String),

    #[error("Parse error: {0}")]
    Parse(String),

    #[error("Invalid argument: {0}")]
    Argument(String),
}