escvpnet 0.3.3

ESC/VP.net protocol library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(incomplete_features)]
#![feature(generic_const_exprs)]
pub mod client;
pub mod command;
pub mod error;
pub mod header;
pub mod io;
pub mod packet;

pub use error::Error;

pub type Result<T> = std::result::Result<T, crate::Error>;

#[cfg(test)]
mod tests {
}