ppaass-protocol 0.1.7

The protocol of ppaass application
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;
#[derive(Error, Debug)]

pub enum ProtocolError {
    #[error("IO error: {_0:?}")]
    Io(#[from] std::io::Error),
    #[error("Bincode error: {_0:?}")]
    Bincode(#[from] bincode::Error),
}