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

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