hanabi-core 0.1.0-alpha.2

Core library for Hanabi
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error;

#[derive(Debug, Error)]
pub enum PubSubError {
    #[error("The command queue is full")]
    CommandQueueFull,

    #[error("The command queue is not accepting new commands")]
    CommandQueueClosed,
}