ontologos-bridge 1.0.1

Model adapters between ontologos-core, horned-owl, and reasonable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use thiserror::Error;

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

#[derive(Debug, Error)]
pub enum Error {
    #[error(transparent)]
    Core(#[from] ontologos_core::Error),
    #[error("bridge: {0}")]
    Bridge(String),
    #[error(transparent)]
    Reasonable(#[from] reasonable::error::ReasonableError),
}