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
12
13
14
15
16
17
18
use std::error::Error;
use std::fmt::{Debug, Display, Formatter};

pub enum NoErr {}

impl Debug for NoErr {
    fn fmt(&self, _: &mut Formatter<'_>) -> std::fmt::Result {
        unreachable!()
    }
}

impl Display for NoErr {
    fn fmt(&self, _: &mut Formatter<'_>) -> std::fmt::Result {
        unreachable!()
    }
}

impl Error for NoErr {}