1 2 3 4 5 6 7 8 9 10 11
use thiserror::Error; #[derive(Error, Debug)] pub enum CompleteQError { #[error("Event channel closed")] PipeBroken, #[error("Read from event channel timed out")] Timeout, #[error("Open oneshot channel twice")] OpenChannelTwice, }