xscp 0.4.2

A minimal text-based communication protocol built in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod request;
pub mod response;
pub mod notification;

pub use request::XscpRequest;
pub use request::OpCode;
pub use request::RequestError;

pub use response::XscpResponse;
pub use response::ResponseError;

pub use notification::XscpNotification;
pub use notification::NotificationType;
pub use notification::NotificationError;