taple-core 0.3.3

TAPLE Protocol reference implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use thiserror::Error;

#[allow(dead_code)]
#[derive(Error, Debug)]
pub enum NotifierError {
    #[error("Petition timeout")]
    RequestTimeout,
    #[error("Notification channel closed")]
    NotificationChannelClosed,
}

#[allow(dead_code)]
#[derive(Error, Debug)]
pub enum TapleError {
    #[error("Taple Start Error {0}")]
    StartError(taple_core::Error),
}