1
2
3
4
5
6
7
8
9
10
11
12
pub mod unsync;
pub mod sync;

#[derive(thiserror::Error,Debug)]
pub enum PipeError{
    #[error("left is drop")]
    LeftDrop,
    #[error("right is drop")]
    RightDrop
}