devproxy 0.1.1

A local development proxy for testing different network conditions
1
2
3
4
5
6
7
8
9
10
#[derive(Debug)]
pub enum Error {
    ExpectedTransferFail,
}

impl std::fmt::Display for Error {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{self:?}")
    }
}