peachy 1.1.1

Peachy is a simple async task manager, similar to thread pool but cooler and for structs
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::fmt::Debug;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum MediatorError<E>
where
    E: Debug + PartialEq + Send + Sync + 'static,
{
    #[error("channel between {from:?} and {to:?} is closed")]
    ChannelClosed { from: E, to: E },
}