database-tree 0.1.0-alpha.5

Database tree structure
Documentation
1
2
3
4
5
6
7
8
9
10
use std::num::TryFromIntError;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("TryFromInt error:{0}")]
    IntConversion(#[from] TryFromIntError),
}

pub type Result<T> = std::result::Result<T, Error>;