byte-engine-betp 0.1.0

Byte-Engine transport protocol primitives for local and remote sessions.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Provides the API and protocol state for BETP clients.

pub mod interface;
pub mod session;

pub use interface::Client;
pub use session::Session;

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Errors {
	BadSalt,
	BadConnectionId,
	IoError,
}