Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, Clone)]
pub struct DokiError {
    pub kind: Box<DokiErrorKind>,
}
#[derive(Debug, Clone)]
pub enum DokiErrorKind {
    UnknownError,
}

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